diff options
author | adamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-05-28 16:13:18 +0800 |
---|---|---|
committer | adamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-05-28 16:13:18 +0800 |
commit | 4f5c0910906ad23364f2f82c85033d13da572998 (patch) | |
tree | 24b83a024e597b02e3e1752ed33cab33a7debb7f /games | |
parent | dd58577edba8157cf0546b7bc2f7a38e880911aa (diff) | |
download | marcuscom-ports-4f5c0910906ad23364f2f82c85033d13da572998.tar marcuscom-ports-4f5c0910906ad23364f2f82c85033d13da572998.tar.gz marcuscom-ports-4f5c0910906ad23364f2f82c85033d13da572998.tar.bz2 marcuscom-ports-4f5c0910906ad23364f2f82c85033d13da572998.tar.lz marcuscom-ports-4f5c0910906ad23364f2f82c85033d13da572998.tar.xz marcuscom-ports-4f5c0910906ad23364f2f82c85033d13da572998.tar.zst marcuscom-ports-4f5c0910906ad23364f2f82c85033d13da572998.zip |
find -> ${FIND}
xargs -> ${XARGS}
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@821 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'games')
-rw-r--r-- | games/gnome-games/Makefile | 2 | ||||
-rw-r--r-- | games/gnomegames2/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/games/gnome-games/Makefile b/games/gnome-games/Makefile index 9dcac8d19..743c8b630 100644 --- a/games/gnome-games/Makefile +++ b/games/gnome-games/Makefile @@ -31,7 +31,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "*.[ch]" | xargs ${REINPLACE_CMD} -e \ + @${FIND} ${WRKSRC} -name "*.[ch]" | ${XARGS} ${REINPLACE_CMD} -e \ 's|malloc\.h|stdlib.h|g' @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ 's|games\.games|games:games|g' diff --git a/games/gnomegames2/Makefile b/games/gnomegames2/Makefile index 9dcac8d19..743c8b630 100644 --- a/games/gnomegames2/Makefile +++ b/games/gnomegames2/Makefile @@ -31,7 +31,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "*.[ch]" | xargs ${REINPLACE_CMD} -e \ + @${FIND} ${WRKSRC} -name "*.[ch]" | ${XARGS} ${REINPLACE_CMD} -e \ 's|malloc\.h|stdlib.h|g' @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ 's|games\.games|games:games|g' |