summaryrefslogtreecommitdiffstats
path: root/libs/libdlna/patches/200-parallel-build.patch
blob: 7f9934b14494c0951f2af3a8499b81685f3d39fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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