diff options
author | Arun Isaac | 2021-05-24 16:28:48 +0530 |
---|---|---|
committer | Arun Isaac | 2021-05-24 16:28:48 +0530 |
commit | b82ce2ea6044ad58ee67ff497b80e0917c2e7c58 (patch) | |
tree | f6d5c4cfb23c13fbecbdfd65a9e3a383dc168fd9 | |
parent | cc7d538a7f69ef1c35b64f7365b725cf194023c6 (diff) | |
download | ccwl-b82ce2ea6044ad58ee67ff497b80e0917c2e7c58.tar.gz ccwl-b82ce2ea6044ad58ee67ff497b80e0917c2e7c58.tar.lz ccwl-b82ce2ea6044ad58ee67ff497b80e0917c2e7c58.zip |
Do not bind command line argument 0 in pre-inst-env.
* pre-inst-env.in: Do not bind command line argument 0 to a variable.
-rw-r--r-- | pre-inst-env.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pre-inst-env.in b/pre-inst-env.in index 5547d6d..87a286a 100644 --- a/pre-inst-env.in +++ b/pre-inst-env.in @@ -30,5 +30,5 @@ (prepend-path-env! "PATH" "@abs_top_builddir@/scripts") (match (command-line) - ((pre-inst-env command args ...) + ((_ command args ...) (apply execlp command command args))) |