From 0db68f193ed9f50b68a107f2904e41f8f9755bbd Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Mon, 4 Aug 2014 17:23:27 -0700 Subject: [PATCH] Fix syntax error in makefile --- .gitmodules | 3 +++ logger | 1 + makefile | 4 ++-- 3 files changed, 6 insertions(+), 2 deletions(-) create mode 160000 logger diff --git a/.gitmodules b/.gitmodules index fac66e6..8b3d69c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -14,3 +14,6 @@ path = libdparse url = https://github.com/Hackerpilot/libdparse.git branch = master +[submodule "logger"] + path = logger + url = https://github.com/burner/logger.git diff --git a/logger b/logger new file mode 160000 index 0000000..0ee9e9a --- /dev/null +++ b/logger @@ -0,0 +1 @@ +Subproject commit 0ee9e9a702ce99bcbc6c16c0492f5b5cc3f21280 diff --git a/makefile b/makefile index f9389e1..aca9484 100644 --- a/makefile +++ b/makefile @@ -83,11 +83,11 @@ dmdserver: gdcclient: rm -f containers/src/std/allocator.d - ${GDC} {CLIENT_SRC} ${GDC_CLIENT_FLAGS} + ${GDC} ${CLIENT_SRC} ${GDC_CLIENT_FLAGS} gdcserver: rm -f containers/src/std/allocator.d - ${GDC} {SERVER_SRC} ${GDC_SERVER_FLAGS} + ${GDC} ${SERVER_SRC} ${GDC_SERVER_FLAGS} #ldcclient: # ${LDC} {CLIENT_SRC} ${LDC_CLIENT_FLAGS}