diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 10:53:27 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 10:53:27 +0000 |
commit | bc07afc1c299155a3451d285f1e3c862af0c8e83 (patch) | |
tree | 1fecad8c5762f1c1f723e927775d4b37b5a0f7d9 /german/BBBike | |
parent | 5406488640c9d4292c7a5349facb9e09d7fb04dc (diff) | |
download | ports-bc07afc1c299155a3451d285f1e3c862af0c8e83.tar.gz ports-bc07afc1c299155a3451d285f1e3c862af0c8e83.zip |
Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command;
the ECHO macro is set to "echo" by default, but it is set to "true" if
make(1) is invoked with the -s option while ECHO_CMD is always set to
the echo command.
Use command macros where appropriate.
Notes
Notes:
svn path=/head/; revision=53954
Diffstat (limited to 'german/BBBike')
-rw-r--r-- | german/BBBike/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/german/BBBike/Makefile b/german/BBBike/Makefile index 7d18adb0d03d..fc28d96caaf0 100644 --- a/german/BBBike/Makefile +++ b/german/BBBike/Makefile @@ -30,7 +30,7 @@ do-build: cd ${WRKSRC}/ext/VirtArray; ${PERL5} Makefile.PL; make all install clean; ${RM} Makefile.old cd ${WRKSRC}; ${POD2MAN} --lax bbbike.pod > bbbike.1 ${MV} ${WRKSRC}/bbbike ${WRKSRC}/bbbike.tmp - ${ECHO} "#! ${PERL}" > ${WRKSRC}/bbbike + ${ECHO_CMD} "#! ${PERL}" > ${WRKSRC}/bbbike ${CAT} ${WRKSRC}/bbbike.tmp >> ${WRKSRC}/bbbike ${RM} -f ${WRKSRC}/bbbike.tmp ${CHMOD} 0755 ${WRKSRC}/bbbike @@ -40,8 +40,8 @@ BBBIKEEXE= bbbike cbbbike bbbikeclient cmdbbbike do-install: -${RM} -rf ${MYDESTDIR} ${CP} -r ${WRKSRC} ${MYDESTDIR} - find ${MYDESTDIR} -exec ${CHMOD} ugo+r {} \; - find ${MYDESTDIR} -perm -u=x -exec ${CHMOD} go+x {} \; + ${FIND} ${MYDESTDIR} -exec ${CHMOD} ugo+r {} \; + ${FIND} ${MYDESTDIR} -perm -u=x -exec ${CHMOD} go+x {} \; .for f in ${BBBIKEEXE} -${RM} -f ${PREFIX}/bin/$f ${LN} -s ${MYDESTDIR}/$f ${PREFIX}/bin/$f |