diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-03-06 11:13:12 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-03-06 12:54:47 +0100 |
commit | 92594b2e0fdae039b9149bcf82b829294ab45fef (patch) | |
tree | 7832d6e2a56d118d3ec87eb25faec9c33c80ce00 | |
parent | c67ee58c72e52261b54ed0dc2d4fd1d07be1e11d (diff) |
gnu: vpnc-scripts: Tighten substitution regex.
* gnu/packages/vpn.scm (vpnc-scripts)[arguments]: Do not substitute file names
starting with /bin to preserve /bin/sh shebangs.
-rw-r--r-- | gnu/packages/vpn.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index becc505b34..4899dbe3b7 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -152,7 +152,7 @@ Only \"Universal TUN/TAP device driver support\" is needed in the kernel.") (for-each (lambda (script) (substitute* script (("^PATH=.*") "") - (("(/usr|)/s?bin/") "") + (("/usr/s?bin/") "") (("\\[ +-x +([^]]+) +\\]" _ command) (string-append "command -v >/dev/null 2>&1 " command)))) |