packages/libs/libdlna/patches/200-parallel-build.patch

18 lines
364 B
Diff
Raw Normal View History

---
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