diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 18:53:27 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 18:53:27 +0800 |
commit | f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1 (patch) | |
tree | 0374d55450aad7c24b92569982b2b7a7c895ca7a /german/BBBike/Makefile | |
parent | fdab120e8f7f5dc349cb1887034af51fe4834d3c (diff) | |
download | freebsd-ports-gnome-f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1.tar.gz freebsd-ports-gnome-f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1.tar.zst freebsd-ports-gnome-f98ba07b23b24f1d3d3aaa3f41d107f35602d1e1.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.
Diffstat (limited to 'german/BBBike/Makefile')
-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 |