diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-01-26 14:03:40 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-01-26 14:03:40 +0100 |
commit | 2da0c04c7cb427d501394ac2f666ce7bfafd7ac9 (patch) | |
tree | 5a7ad8ca417fcf034ec062eaced0d7fb1d2af136 /libdtv/liblx | |
parent | e2540aa89883eb3cd4f14fba83bbac88426e65b9 (diff) | |
download | vdr-2da0c04c7cb427d501394ac2f666ce7bfafd7ac9.tar.gz vdr-2da0c04c7cb427d501394ac2f666ce7bfafd7ac9.tar.bz2 |
Fixed handling user defined CFLAGS in libdtv/libvdr/Makefile
Diffstat (limited to 'libdtv/liblx')
-rw-r--r-- | libdtv/liblx/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdtv/liblx/Makefile b/libdtv/liblx/Makefile index 2531708a..d06ee091 100644 --- a/libdtv/liblx/Makefile +++ b/libdtv/liblx/Makefile @@ -27,8 +27,8 @@ # # # -CC = gcc -CFLAGS = -O2 -g -pedantic -Wmissing-prototypes -Wstrict-prototypes \ +CC ?= gcc +CFLAGS ?= -O2 -g -pedantic -Wmissing-prototypes -Wstrict-prototypes \ -Wimplicit -D__USE_FIXED_PROTOTYPES__ # -DDEBUG |