diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-12-13 00:06:32 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-12-13 00:06:32 +0100 |
commit | c809ec94d11f1c7e23cccb988dfb1412aff72636 (patch) | |
tree | ab296451f7f626aab9822ac602de24e14ec3ffc4 /guix | |
parent | 5e5deea9529c0ed2e84235d778256cccc1701df9 (diff) |
utils: Change 'patch-makefile-SHELL' to support ":=" assignments.
Reported by Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>.
* guix/build/utils.scm (patch-makefile-SHELL): Update regexp to match
":=" assignments.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/build/utils.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build/utils.scm b/guix/build/utils.scm index 01ac8961d8..be91fb467b 100644 --- a/guix/build/utils.scm +++ b/guix/build/utils.scm @@ -638,7 +638,7 @@ When KEEP-MTIME? is true, the atime/mtime of FILE are kept unchanged." (let ((st (stat file))) (substitute* file - (("^ *SHELL[[:blank:]]*=[[:blank:]]*([[:graph:]]*/)([[:graph:]]+)(.*)$" + (("^ *SHELL[[:blank:]]*:?=[[:blank:]]*([[:graph:]]*/)([[:graph:]]+)(.*)$" _ dir shell args) (let* ((old (string-append dir shell)) (new (or (find-shell shell) old))) |