diff options
author | phintuka <phintuka> | 2010-10-19 11:51:00 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-10-19 11:51:00 +0000 |
commit | 024b0fb4e9cd07ecfd5d4b50563a2be11c044430 (patch) | |
tree | a13af6baf7368638b5abfbb4d5485533f211e480 | |
parent | 120071bcc4b7f7ce467292cff39ff9f154a0a64a (diff) | |
download | xineliboutput-024b0fb4e9cd07ecfd5d4b50563a2be11c044430.tar.gz xineliboutput-024b0fb4e9cd07ecfd5d4b50563a2be11c044430.tar.bz2 |
Fixed MAKEDEP: use $(CXX), not hardcoded g++
(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.92 2010-10-19 11:49:19 phintuka Exp $ +# $Id: Makefile,v 1.93 2010-10-19 11:51:00 phintuka Exp $ # # The official name of this plugin. @@ -239,7 +239,7 @@ OBJS_XINE = $(OBJS_XINEINPUTVDR) xine_post_autocrop.o xine_post_swscale.o xine_p ### Dependencies: ### -MAKEDEP = g++ -MM -MG +MAKEDEP = $(CXX) -MM -MG DEPFILE = .dependencies $(DEPFILE): Makefile config.mak @rm -f $@ |