diff options
author | wiz <wiz> | 2007-05-13 01:34:27 +0000 |
---|---|---|
committer | wiz <wiz> | 2007-05-13 01:34:27 +0000 |
commit | 9990f68cd184203f4a6415febc268a9c408279f7 (patch) | |
tree | fb58586c7b4471a51ebcd61448ac1d6fd5635a3e /devel | |
parent | 18352c0340b41f65f56673c9903f545100f90669 (diff) | |
download | pkgsrc-9990f68cd184203f4a6415febc268a9c408279f7.tar.gz |
Use better quoting when creating the run scripts. From rillig@.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/fromcvs/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/fromcvs/Makefile b/devel/fromcvs/Makefile index db0f2c340bb..9f3766cd471 100644 --- a/devel/fromcvs/Makefile +++ b/devel/fromcvs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2007/04/21 11:51:19 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2007/05/13 01:34:27 wiz Exp $ DISTNAME= 7a1ad0af8464 # Last part of PKGNAME is changeset number @@ -22,9 +22,9 @@ DIST_SUBDIR= fromcvs do-build: ${ECHO} "#!/bin/sh" > ${WRKSRC}/togit - ${ECHO} "${RUBY} -I${PREFIX}/share/fromcvs ${PREFIX}/share/fromcvs/togit.rb \"$$""@\"" >> ${WRKSRC}/togit + ${ECHO} "${RUBY} -I${PREFIX}/share/fromcvs ${PREFIX}/share/fromcvs/togit.rb \"\$$@\"" >> ${WRKSRC}/togit ${ECHO} "#!/bin/sh" > ${WRKSRC}/tohg - ${ECHO} "${RUBY} -I${PREFIX}/share/fromcvs ${PREFIX}/share/fromcvs/tohg.rb \"$$""@\"" >> ${WRKSRC}/tohg + ${ECHO} "${RUBY} -I${PREFIX}/share/fromcvs ${PREFIX}/share/fromcvs/tohg.rb \"\$$@\"" >> ${WRKSRC}/tohg do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/fromcvs |