projects
/
course.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
28464ad
)
If the EMPTY_DIRS timestamps get out of sync, don't flip out ;).
author
W. Trevor King
<wking@drexel.edu>
Sat, 3 Apr 2010 21:56:42 +0000
(17:56 -0400)
committer
W. Trevor King
<wking@drexel.edu>
Sat, 3 Apr 2010 21:56:42 +0000
(17:56 -0400)
For example, if you edit html/Makefile after EMPTY_DIRS creation,
the Makefile timestamp will be newer than the EMPTY_DIRS', so it
will try and recreate them. The "-p" option allows it to not fail
in the case that they already exist.
html/Makefile
patch
|
blob
|
history
diff --git
a/html/Makefile
b/html/Makefile
index e5db22278d03eafe0197c0d0ade2a800691f82bf..14284b010a2bb68fa45db7cdcc15479aa1c39078 100644
(file)
--- a/
html/Makefile
+++ b/
html/Makefile
@@
-43,7
+43,7
@@
install-source : $(DIST_FILE) install-html
# Create empty directories if neccessary (Git doesn't track dirs)
$(EMPTY_DIRS) :
- mkdir $@
+ mkdir
-p
$@
$(DEEP_EMPTY_DIRS) : $(EMPTY_DIRS)
- mkdir $@
+ mkdir
-p
$@