diff options
author | wiz <wiz> | 2000-02-05 05:01:26 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-02-05 05:01:26 +0000 |
commit | adf3c812a69d797b4ac856de2bbf56afd97057f1 (patch) | |
tree | 8cf02afcb0b11491ca3e5b30f1706c5581e55916 /security | |
parent | 62d14e2975a96ccf78a80adfeadf8b3f4db2da43 (diff) | |
download | pkgsrc-adf3c812a69d797b4ac856de2bbf56afd97057f1.tar.gz |
replaced CMDs by ${CMD}
Diffstat (limited to 'security')
-rw-r--r-- | security/rc5des/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/security/rc5des/Makefile b/security/rc5des/Makefile index 5191384e6e7..a68cb4a6258 100644 --- a/security/rc5des/Makefile +++ b/security/rc5des/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 1999/06/20 21:06:21 tron Exp $ +# $NetBSD: Makefile,v 1.4 2000/02/05 05:01:26 wiz Exp $ # DISTNAME= rc5-mlg-004 @@ -26,14 +26,14 @@ NO_CONFIGURE= yes # ${SED} -e 's|your\.site|'$$fqdn'|g' ${WRKSRC}/master.ini.in > ${WRKSRC}/master.ini) do-build: - cd ${WRKSRC}; rm -f master.ini.orig rc5.sh.orig + cd ${WRKSRC}; ${RM} -f master.ini.orig rc5.sh.orig # agc - commented out until the above is tested. #do-build: -# cd ${WRKSRC}; rm -f master.ini.orig master.ini.in rc5.sh.orig +# cd ${WRKSRC}; ${RM} -f master.ini.orig master.ini.in rc5.sh.orig do-install: ${MKDIR} ${PREFIX}/RC5 - cd ${WRKSRC}; /bin/pax -r -w . ${PREFIX}/RC5 + cd ${WRKSRC}; ${PAX} -r -w . ${PREFIX}/RC5 .include "../../mk/bsd.pkg.mk" |