commit: 3ab82ae3e1773915e25b3a3dafe57ef97375982a
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 23 22:48:29 2015 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Mon Feb 23 22:48:35 2015 +0000
URL:
http://sources.gentoo.org/gitweb/?p=proj/portage-utils.git;a=commit;h=3ab82ae3
fix debug/symlinks targets to work in parallel
---
Makefile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
index 4e65396..137b505 100644
--- a/Makefile
+++ b/Makefile
@@ -62,8 +62,8 @@ CPPFLAGS += $(APP_FLAGS)
all: q
@true
-debug:
- $(MAKE) CFLAGS="$(CFLAGS) $(DBG_CFLAGS)" clean symlinks
+debug: clean
+ $(MAKE) CFLAGS="$(CFLAGS) $(DBG_CFLAGS)" symlinks
@-scanelf -o /dev/null -BXxz permsx q
q: $(SRC) libq/*.c *.h libq/*.h
@@ -123,7 +123,7 @@ endif
man: q
./man/mkman.py
-symlinks: all
+symlinks: q
./q --install
-include .depend