diff options
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/libfxp/Makefile | 2 | ||||
-rw-r--r-- | ftp/pavuk/Makefile | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ftp/libfxp/Makefile b/ftp/libfxp/Makefile index 477f2cfe2121..ac1e5ee1547c 100644 --- a/ftp/libfxp/Makefile +++ b/ftp/libfxp/Makefile @@ -24,7 +24,7 @@ post-patch: s,^PREFIX,#PREFIX,g" ${WRKSRC}/${file} .endfor @(cd ${WRKSRC} ; \ - ${GREP} -l -R malloc.h * | xargs \ + ${GREP} -l -R malloc.h * | ${XARGS} \ ${REINPLACE_CMD} -e "s|malloc.h|stdlib.h|g") .include <bsd.port.mk> diff --git a/ftp/pavuk/Makefile b/ftp/pavuk/Makefile index 36a35fb65569..fbc7b4425092 100644 --- a/ftp/pavuk/Makefile +++ b/ftp/pavuk/Makefile @@ -44,8 +44,8 @@ pre-patch: @${REINPLACE_CMD} -e 's|-pthread -DHAVE_MT|${PTHREAD_CFLAGS} -DHAVE_MT|g ; \ s|-pthread|${PTHREAD_LIBS}|g ; \ s|-lpthreads|${PTHREAD_LIBS}|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in" | xargs ${REINPLACE_CMD} -e \ - 's|\$$(datadir)/icons|\$$(pkgdatadir)/icons|g' + @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|\$$(datadir)/icons|$$(pkgdatadir)/icons|g' post-install: ${INSTALL_DATA} ${WRKSRC}/pavuk_authinfo.sample ${PREFIX}/etc |