summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NWGNUmakefile2
-rw-r--r--build/NWGNUenvironment.inc2
2 files changed, 3 insertions, 1 deletions
diff --git a/NWGNUmakefile b/NWGNUmakefile
index 0eb666308..7b9f3b0a1 100644
--- a/NWGNUmakefile
+++ b/NWGNUmakefile
@@ -324,7 +324,7 @@ ifndef DEST
-copy $(subst /,\,$(APRUTIL))\STATUS $(INSTALLBASE)\*.apu
-copy $(subst /,\,$(APRUTIL))\CHANGES $(INSTALLBASE)\*.apu
@echo rem copying the docs directories > xc.bat
- @echo xcopy docs $(INSTALLBASE)\docs\*.* /E /Y >> xc.bat
+ @echo xcopy docs $(INSTALLBASE)\docs\*.* $(XCOPYSW) >> xc.bat
$(CMD) xc.bat
$(DEL) xc.bat
endif
diff --git a/build/NWGNUenvironment.inc b/build/NWGNUenvironment.inc
index 44417d658..b3aff53b1 100644
--- a/build/NWGNUenvironment.inc
+++ b/build/NWGNUenvironment.inc
@@ -243,12 +243,14 @@ CHKNOT=cmd /C if not exist
DEL = del /F
DELTREE = cmd /C rd /s/q
WINNT=1
+XCOPYSW = /E
else
CMD=command /C
CHK=command /C if exist
CHKNOT=command /C if not exist
DEL = del
DELTREE = deltree /y
+XCOPYSW = /E /Y
endif