changeset 3593:85a49369c95f trunk

Actually, the last patch was wrong. depend has to depend on ${SRCS}.
author Jonathan Schleifer <js@h3c.de>
date Fri, 21 Sep 2007 18:20:18 +0200
parents f69ae126bb47
children fa49ef305f59
files buildsys.mk.in src/audacious/Makefile
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/buildsys.mk.in	Fri Sep 21 18:13:30 2007 +0200
+++ b/buildsys.mk.in	Fri Sep 21 18:20:18 2007 +0200
@@ -82,7 +82,7 @@
 		${DIR_LEAVE}; \
 	done
 
-depend: pre-depend
+depend: pre-depend ${SRCS}
 	regen=0; \
 	for i in ${SRCS}; do [ $$i -nt .deps ] && regen=1; done; \
 	if [ $$regen = 1 ]; then \
--- a/src/audacious/Makefile	Fri Sep 21 18:13:30 2007 +0200
+++ b/src/audacious/Makefile	Fri Sep 21 18:20:18 2007 +0200
@@ -168,7 +168,7 @@
 LIBS += -L../libaudclient -laudclient
 endif
 
-pre-depend: build_stamp.c ${DBUS_BINDINGS}
+pre-depend: ${DBUS_BINDINGS}
 
 CPPFLAGS += -DHAVE_CONFIG_H		\
 	    ${MOWGLI_CFLAGS}		\