diff options
author | pav <pav@FreeBSD.org> | 2006-01-10 00:50:07 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-01-10 00:50:07 +0800 |
commit | 571c5818809ff8fe73720ae8c6fe40fa8df5e361 (patch) | |
tree | a570ac96a731ae22fa88889569042ccd4bc6dbc4 /multimedia | |
parent | e54201e032cf08feced0766cb57b6adf41e300fb (diff) | |
download | freebsd-ports-gnome-571c5818809ff8fe73720ae8c6fe40fa8df5e361.tar.gz freebsd-ports-gnome-571c5818809ff8fe73720ae8c6fe40fa8df5e361.tar.zst freebsd-ports-gnome-571c5818809ff8fe73720ae8c6fe40fa8df5e361.zip |
- Fix find command
Approved by: maintainer
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/mplayer/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/mplayer/Makefile b/multimedia/mplayer/Makefile index eacfabc3045b..3fc75997f114 100644 --- a/multimedia/mplayer/Makefile +++ b/multimedia/mplayer/Makefile @@ -883,8 +883,8 @@ post-patch: ${WRKSRC}/${CONFIGURE_SCRIPT} @${REINPLACE_CMD} -e 's!/usr/local!${PREFIX}!' \ ${WRKSRC}/${CONFIGURE_SCRIPT} - @${FIND} -E ${WRKSRC} -type f -print0 \ - -iregex ".*(configure|.sh|Makefile)" | \ + @${FIND} -E ${WRKSRC} -type f \ + -iregex ".*(configure|.sh|Makefile)" -print0 | \ ${XARGS} -x -0 -n 10 \ ${REINPLACE_CMD} -E \ -e 's|[[:space:]]gcc[-[:digit:]\.]+| ${CC}|' \ |