From 15f26764a410007ff009f02a6cdb070e5531338c Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Thu, 22 Mar 2007 16:01:38 +0000 Subject: [PATCH] few minor cleanups. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@521317 13f79535-47bb-0310-9956-ffa450edef68 --- build/NWGNUenvironment.inc | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/build/NWGNUenvironment.inc b/build/NWGNUenvironment.inc index b894d1f732..106b82b2a2 100644 --- a/build/NWGNUenvironment.inc +++ b/build/NWGNUenvironment.inc @@ -229,7 +229,7 @@ endif endif INSTDEVDIRS := \ - $(INSTDIRS) \ + $(INSTDIRS) \ $(INSTALL)\$(BASEDIR)\include \ $(INSTALL)\$(BASEDIR)\lib \ @@ -256,22 +256,21 @@ OS = Windows_NT endif ifeq "$(OS)" "Windows_NT" -CMD=cmd /C -CHK=cmd /C if exist -CHKNOT=cmd /C if not exist +CMD = cmd /C DEL = del /F -DELTREE = cmd /C rd /s/q -WINNT=1 +DELTREE = rd /s/q +WINNT = 1 XCOPYSW = /E else -CMD=command /C -CHK=command /C if exist -CHKNOT=command /C if not exist +CMD = command /C DEL = del DELTREE = deltree /y XCOPYSW = /E /Y endif +CHK = $(CMD) if exist +CHKNOT = $(CMD) if not exist + # # Setup base C compiler flags -- 2.49.0