diff options
author | rodent <rodent> | 2013-04-06 21:07:31 +0000 |
---|---|---|
committer | rodent <rodent> | 2013-04-06 21:07:31 +0000 |
commit | 5709d03a54f4b984d036819527e6c1d38b026151 (patch) | |
tree | c9dec68b64c6028a90065156103df5ec5322256c /shells | |
parent | 20c9c895134856aac872cc871957a914fcaaea20 (diff) | |
download | pkgsrc-5709d03a54f4b984d036819527e6c1d38b026151.tar.gz |
"Each sed command should appear in an assignment of its own."
Diffstat (limited to 'shells')
-rw-r--r-- | shells/zsh/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/shells/zsh/Makefile b/shells/zsh/Makefile index 01562a24b9e..7a2597bb86c 100644 --- a/shells/zsh/Makefile +++ b/shells/zsh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.61 2013/01/03 15:37:23 ryoon Exp $ +# $NetBSD: Makefile,v 1.62 2013/04/06 21:07:35 rodent Exp $ .include "../../shells/zsh/Makefile.common" @@ -24,10 +24,9 @@ SUBST_FILES.prefix-fixup= \ Functions/Misc/zed \ Functions/Example/cat \ Functions/Example/zless -SUBST_SED.prefix-fixup= \ - -e 's|^\#\!/bin/zsh|\#\!${PREFIX}/bin/zsh|g' \ - -e 's|^\#\! /bin/zsh|\#\! ${PREFIX}/bin/zsh|g' \ - -e 's|^\#\!/usr/local/bin/zsh|\#\!${PREFIX}/bin/zsh|g' \ - -e 's|^\#\! /usr/local/bin/zsh|\#\! ${PREFIX}/bin/zsh|g' +SUBST_SED.prefix-fixup= -e 's|^\#\!/bin/zsh|\#\!${PREFIX}/bin/zsh|g' +SUBST_SED.prefix-fixup+= -e 's|^\#\! /bin/zsh|\#\! ${PREFIX}/bin/zsh|g' +SUBST_SED.prefix-fixup+= -e 's|^\#\!/usr/local/bin/zsh|\#\!${PREFIX}/bin/zsh|g' +SUBST_SED.prefix-fixup+= -e 's|^\#\! /usr/local/bin/zsh|\#\! ${PREFIX}/bin/zsh|g' .include "../../mk/bsd.pkg.mk" |