diff options
author | Mikhail Teterin <mi@FreeBSD.org> | 2008-01-25 18:26:59 +0000 |
---|---|---|
committer | Mikhail Teterin <mi@FreeBSD.org> | 2008-01-25 18:26:59 +0000 |
commit | fa321a797644f22233a6063920c05a9258c72d49 (patch) | |
tree | 491bfd6ce7d880da88888878aa14482a81c12275 | |
parent | Revert unwanted commit while it's not too late. (diff) |
Remove explicit setting of CC and AS. They are safely taken by configure
from the environment. Overwriting them as is currently done by the port
breaks, when either command contains blanks (such as when using distcc
and/or ccache).
PR: ports/119593:
Submitted by: Dominic Fandrey
Approved by: Thomas E. Zander (maintainer - see the PR)
Notes
Notes:
svn path=/head/; revision=206195
-rw-r--r-- | multimedia/mplayer/Makefile.shared | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/multimedia/mplayer/Makefile.shared b/multimedia/mplayer/Makefile.shared index 185b612e1d9b..87f257167616 100644 --- a/multimedia/mplayer/Makefile.shared +++ b/multimedia/mplayer/Makefile.shared @@ -29,9 +29,7 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ PTHREAD_LIBS=${PTHREAD_LIBS} \ TMPDIR="${WRKSRC}" -CONFIGURE_ARGS= --cc=${CC} \ - --as=${AS} \ - --enable-png \ +CONFIGURE_ARGS= --enable-png \ --enable-menu \ --disable-faad-external \ --disable-vidix-external \ |