bug-gsrc
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug-gsrc] /home/b/bjg/notify/gsrc/ r249: split static and implicit rule


From: Brian Gough
Subject: [bug-gsrc] /home/b/bjg/notify/gsrc/ r249: split static and implicit rules for compatibility with make-3.82
Date: Fri, 30 Jul 2010 11:08:52 +0100
User-agent: Bazaar (2.0.0)

------------------------------------------------------------
revno: 249
committer: Brian Gough <address@hidden>
branch nick: gsrc
timestamp: Fri 2010-07-30 11:08:52 +0100
message:
  split static and implicit rules for compatibility with make-3.82
modified:
  gar.mk
=== modified file 'gar.mk'
--- a/gar.mk    2010-07-14 18:49:06 +0000
+++ b/gar.mk    2010-07-30 10:08:52 +0000
@@ -67,10 +67,16 @@
 #################### DIRECTORY MAKERS ####################
 
 # This is to make dirs as needed by the base rules
-$(sort $(DOWNLOADDIR) $(COOKIEDIR) $(LOGDIR) $(WORKSRC) $(WORKDIR) 
$(EXTRACTDIR) $(FILEDIR) $(SCRATCHDIR)) $(COOKIEDIR)/%:
-       @if test -d $@; then : ; else \
-               mkdir -p $@; \
-       fi
+$(sort $(DOWNLOADDIR) $(COOKIEDIR) $(LOGDIR) $(WORKSRC) $(WORKDIR) 
$(EXTRACTDIR) $(FILEDIR) $(SCRATCHDIR)):
+       @if test -d $@; then : ; else \
+               mkdir -p $@; \
+       fi
+
+$(COOKIEDIR)/%:
+       @if test -d $@; then : ; else \
+               mkdir -p $@; \
+       fi
+
 
 # include the configuration file to override any of these variables
 include $(GARDIR)/gar.conf.mk


reply via email to

[Prev in Thread] Current Thread [Next in Thread]