swc

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.nihaljere.xyz/swc
Log | Files | Refs | README | LICENSE

commit 45c5539210ec86fb3c3a5923797551341f32fd3b
parent f2138d7fdc7aa50b671f210d810c0eec87331f45
Author: Michael Forney <mforney@mforney.org>
Date:   Wed, 20 Nov 2013 17:30:40 -0800

Fix install directory creation

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -31,7 +31,7 @@ endef compile = $(call quiet,CC) $(CFLAGS) $(CPPFLAGS) -I . -c -MMD -MP -MF .deps/$(basename $<).d -o $@ $< link = $(call quiet,CCLD,$(CC)) $(CFLAGS) -o $@ $^ -$(foreach dir,BIN LIB INCLUDE PKGCONFIG,$(DESTDIR)$(dir)): +$(foreach dir,BIN LIB INCLUDE PKGCONFIG,$(DESTDIR)$($(dir)DIR)): mkdir -p "$@" .PHONY: check-dependencies