libdlna: Fix parallel build

git-svn-id: svn://svn.openwrt.org/openwrt/packages@23330 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mb
2010-10-08 17:57:18 +00:00
parent ed8e4dd485
commit 7d3462e4c6
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,17 @@
---
Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- libdlna-0.2.3.orig/Makefile
+++ libdlna-0.2.3/Makefile
@@ -32,8 +32,8 @@ lib:
test: $(LIBTEST)
-$(LIBTEST): $(SRCS)
- $(CC) $? $(OPTFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
+$(LIBTEST): lib $(SRCS)
+ $(CC) $(SRCS) $(OPTFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
clean:
$(MAKE) -C src clean