diff options
author | phintuka <phintuka> | 2010-10-19 11:49:19 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-10-19 11:49:19 +0000 |
commit | 120071bcc4b7f7ce467292cff39ff9f154a0a64a (patch) | |
tree | 7ec224b7f3e1095af8dbac281fcf4cbcc4b69fa1 | |
parent | 87f2196dcd6e9b559a14fe41b8bec6f5bc56b940 (diff) | |
download | xineliboutput-120071bcc4b7f7ce467292cff39ff9f154a0a64a.tar.gz xineliboutput-120071bcc4b7f7ce467292cff39ff9f154a0a64a.tar.bz2 |
Respect CFLAGS and LDFLAGS when building mpg2c.
(Thanks to Christian Ruppert)
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ # See the main source file 'xineliboutput.c' for copyright information and # how to reach the author. # -# $Id: Makefile,v 1.91 2010-07-09 22:14:32 phintuka Exp $ +# $Id: Makefile,v 1.92 2010-10-19 11:49:19 phintuka Exp $ # # The official name of this plugin. @@ -257,7 +257,7 @@ DEFINES += -Wall ### mpg2c: mpg2c.c - $(CC) mpg2c.c -o $@ + $(CC) $(CFLAGS) $(LDFLAGS) mpg2c.c -o $@ # data black_720x576.c: mpg2c black_720x576.mpg |