diff options
author | rodent <rodent@pkgsrc.org> | 2013-04-06 21:07:31 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2013-04-06 21:07:31 +0000 |
commit | adda884d44cb88a3a470e58f81adefef66c4f3b7 (patch) | |
tree | c9dec68b64c6028a90065156103df5ec5322256c /net | |
parent | 0fe51336d1067daa8658086c8d91d4a9b9c92c1f (diff) | |
download | pkgsrc-adda884d44cb88a3a470e58f81adefef66c4f3b7.tar.gz |
"Each sed command should appear in an assignment of its own."
Diffstat (limited to 'net')
-rw-r--r-- | net/aget/Makefile | 8 | ||||
-rw-r--r-- | net/tsocks/Makefile | 5 |
2 files changed, 7 insertions, 6 deletions
diff --git a/net/aget/Makefile b/net/aget/Makefile index 34ecde8988b..7239dc4c131 100644 --- a/net/aget/Makefile +++ b/net/aget/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2012/10/23 17:18:08 asau Exp $ +# $NetBSD: Makefile,v 1.13 2013/04/06 21:07:34 rodent Exp $ # DISTNAME= aget-0.4 @@ -20,9 +20,9 @@ SUBST_CLASSES+= options SUBST_MESSAGE.options= Fixing build options. SUBST_STAGE.options= post-patch SUBST_FILES.options= Makefile Makefile.Solaris -SUBST_SED.options= -e 's,CFLAGS =,\#CFLAGS =,' \ - -e 's,LDFLAGS =,\#LDFLAGS =,' \ - -e 's,CC =,\#CC =,' +SUBST_SED.options= -e 's,CFLAGS =,\#CFLAGS =,' +SUBST_SED.options+= -e 's,LDFLAGS =,\#LDFLAGS =,' +SUBST_SED.options+= -e 's,CC =,\#CC =,' PTHREAD_OPTS+= require LDFLAGS+= ${PTHREAD_LIBS} diff --git a/net/tsocks/Makefile b/net/tsocks/Makefile index 15883788a94..4bcffb647bb 100644 --- a/net/tsocks/Makefile +++ b/net/tsocks/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2012/10/23 17:19:14 asau Exp $ +# $NetBSD: Makefile,v 1.17 2013/04/06 21:07:34 rodent Exp $ # DISTNAME= tsocks-1.8beta5 @@ -26,7 +26,8 @@ SUBST_CLASSES+= tsocks SUBST_STAGE.tsocks= post-configure SUBST_MESSAGE.tsocks= Generating tsocks wrapper script. SUBST_FILES.tsocks= tsocks -SUBST_SED.tsocks= -e "s|@SH@|${SH}|g" -e "s|@PREFIX@|${PREFIX}|g" +SUBST_SED.tsocks= -e "s|@SH@|${SH}|g" +SUBST_SED.tsocks+= -e "s|@PREFIX@|${PREFIX}|g" INSTALLATION_DIRS+= ${EGDIR} |