diff options
author | marha <marha@users.sourceforge.net> | 2011-02-02 08:59:19 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-02-02 08:59:19 +0000 |
commit | daecf49877a90c570f0ac8ccaf3a3aff74ae1857 (patch) | |
tree | 3f0b15694afc66fa7facb10013618952da94daec | |
parent | b6e46036afc783ff8217b26be8a01da12a32a8f3 (diff) | |
download | vcxsrv-daecf49877a90c570f0ac8ccaf3a3aff74ae1857.tar.gz vcxsrv-daecf49877a90c570f0ac8ccaf3a3aff74ae1857.tar.bz2 vcxsrv-daecf49877a90c570f0ac8ccaf3a3aff74ae1857.zip |
Use internal command mkdir for creating dir
-rw-r--r-- | makefile.after | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile.after b/makefile.after index 2ecf39423..5dd5e1cac 100644 --- a/makefile.after +++ b/makefile.after @@ -92,7 +92,7 @@ endif .PHONY: all cleanall clean clean$(CLEANRULEPOSTFIX)
### Implicit rules ###
-CREATEDIR=if not exist $@ mkdir $@
+CREATEDIR=mkdir $@
$(OBJDIR) :
$(CREATEDIR)
@@ -129,4 +129,4 @@ endif ifdef DESTDIR
$(DESTDIR):
$(CREATEDIR)
-endif
\ No newline at end of file +endif
|