mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed 'newplugin' to use the compiler defined in $(CXX) for generating file dependencies
This commit is contained in:
parent
a31266c9ec
commit
414548446b
@ -754,6 +754,8 @@ Christoph Friederich <christoph.friederich@gmx.de>
|
|||||||
|
|
||||||
Andreas Brachold <andy03@deltab.de>
|
Andreas Brachold <andy03@deltab.de>
|
||||||
for his support in keeping 'channels.conf.terr' up to date
|
for his support in keeping 'channels.conf.terr' up to date
|
||||||
|
for fixing 'newplugin' to use the compiler defined in $(CXX) for generating file
|
||||||
|
dependencies
|
||||||
|
|
||||||
Manuel Hartl <icecep@gmx.net>
|
Manuel Hartl <icecep@gmx.net>
|
||||||
for suggesting to extend the logging info when starting/stopping timers
|
for suggesting to extend the logging info when starting/stopping timers
|
||||||
|
2
HISTORY
2
HISTORY
@ -3013,3 +3013,5 @@ Video Disk Recorder Revision History
|
|||||||
currently in use (it will then return a dummy cOsd object and write a message to
|
currently in use (it will then return a dummy cOsd object and write a message to
|
||||||
the log file).
|
the log file).
|
||||||
- Added Estonian language texts (thanks to Arthur Konovalov).
|
- Added Estonian language texts (thanks to Arthur Konovalov).
|
||||||
|
- Fixed 'newplugin' to use the compiler defined in $(CXX) for generating file
|
||||||
|
dependencies (thanks to Andreas Brachold).
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
# See the main source file 'vdr.c' for copyright information and
|
# See the main source file 'vdr.c' for copyright information and
|
||||||
# how to reach the author.
|
# how to reach the author.
|
||||||
#
|
#
|
||||||
# $Id: newplugin 1.16 2003/12/21 15:45:18 kls Exp $
|
# $Id: newplugin 1.17 2004/10/16 12:12:43 kls Exp $
|
||||||
|
|
||||||
$PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin <name>\n";
|
$PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin <name>\n";
|
||||||
|
|
||||||
@ -110,7 +110,7 @@ OBJS = \$(PLUGIN).o
|
|||||||
|
|
||||||
# Dependencies:
|
# Dependencies:
|
||||||
|
|
||||||
MAKEDEP = g++ -MM -MG
|
MAKEDEP = \$(CXX) -MM -MG
|
||||||
DEPFILE = .dependencies
|
DEPFILE = .dependencies
|
||||||
\$(DEPFILE): Makefile
|
\$(DEPFILE): Makefile
|
||||||
\@\$(MAKEDEP) \$(DEFINES) \$(INCLUDES) \$(OBJS:%.o=%.c) > \$\@
|
\@\$(MAKEDEP) \$(DEFINES) \$(INCLUDES) \$(OBJS:%.o=%.c) > \$\@
|
||||||
|
Loading…
Reference in New Issue
Block a user