commit 45c5539
Michael Forney
·
2013-11-21 01:30:40 +0000 UTC
parent f2138d7
Fix install directory creation
1 files changed,
+1,
-1
M
Makefile
M
Makefile
+1,
-1
1@@ -31,7 +31,7 @@ endef
2 compile = $(call quiet,CC) $(CFLAGS) $(CPPFLAGS) -I . -c -MMD -MP -MF .deps/$(basename $<).d -o $@ $<
3 link = $(call quiet,CCLD,$(CC)) $(CFLAGS) -o $@ $^
4
5-$(foreach dir,BIN LIB INCLUDE PKGCONFIG,$(DESTDIR)$(dir)):
6+$(foreach dir,BIN LIB INCLUDE PKGCONFIG,$(DESTDIR)$($(dir)DIR)):
7 mkdir -p "$@"
8
9 .PHONY: check-dependencies