You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by fu...@apache.org on 2011/03/23 12:24:37 UTC

svn commit: r1084541 - in /apr/apr: branches/1.3.x/build/NWGNUenvironment.inc branches/1.4.x/build/NWGNUenvironment.inc branches/1.5.x/build/NWGNUenvironment.inc trunk/build/NWGNUenvironment.inc

Author: fuankg
Date: Wed Mar 23 11:24:36 2011
New Revision: 1084541

URL: http://svn.apache.org/viewvc?rev=1084541&view=rev
Log:
Use the ComSpec environment var.

Modified:
    apr/apr/branches/1.3.x/build/NWGNUenvironment.inc
    apr/apr/branches/1.4.x/build/NWGNUenvironment.inc
    apr/apr/branches/1.5.x/build/NWGNUenvironment.inc
    apr/apr/trunk/build/NWGNUenvironment.inc

Modified: apr/apr/branches/1.3.x/build/NWGNUenvironment.inc
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/build/NWGNUenvironment.inc?rev=1084541&r1=1084540&r2=1084541&view=diff
==============================================================================
--- apr/apr/branches/1.3.x/build/NWGNUenvironment.inc (original)
+++ apr/apr/branches/1.3.x/build/NWGNUenvironment.inc Wed Mar 23 11:24:36 2011
@@ -163,12 +163,11 @@ else
 ifeq "$(OS)" "Windows_NT"
 DEL	= $(shell if exist $(subst /,\,$1) del /q /f 2>NUL $(subst /,\,$1))
 RMDIR	= $(shell if exist $(subst /,\,$1)\NUL rd /q /s 2>NUL $(subst /,\,$1))
-ECHONL	= cmd /c echo.
 else
 DEL	= $(shell if exist $(subst /,\,$1) del 2>NUL $(subst /,\,$1))
 RMDIR	= $(shell if exist $(subst /,\,$1)\NUL deltree /y 2>NUL $(subst /,\,$1))
-ECHONL	= command /c echo.
 endif
+ECHONL	= $(ComSpec) /c echo.
 MKDIR	= $(shell if not exist $(subst /,\,$1)\NUL md 2>NUL $(subst /,\,$1))
 COPY	= copy /y 2>NUL $(subst /,\,$1) $(subst /,\,$2)
 COPYR	= xcopy /y /e 2>NUL $(subst /,\,$1) $(subst /,\,$2)

Modified: apr/apr/branches/1.4.x/build/NWGNUenvironment.inc
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/build/NWGNUenvironment.inc?rev=1084541&r1=1084540&r2=1084541&view=diff
==============================================================================
--- apr/apr/branches/1.4.x/build/NWGNUenvironment.inc (original)
+++ apr/apr/branches/1.4.x/build/NWGNUenvironment.inc Wed Mar 23 11:24:36 2011
@@ -163,12 +163,11 @@ else
 ifeq "$(OS)" "Windows_NT"
 DEL	= $(shell if exist $(subst /,\,$1) del /q /f 2>NUL $(subst /,\,$1))
 RMDIR	= $(shell if exist $(subst /,\,$1)\NUL rd /q /s 2>NUL $(subst /,\,$1))
-ECHONL	= cmd /c echo.
 else
 DEL	= $(shell if exist $(subst /,\,$1) del 2>NUL $(subst /,\,$1))
 RMDIR	= $(shell if exist $(subst /,\,$1)\NUL deltree /y 2>NUL $(subst /,\,$1))
-ECHONL	= command /c echo.
 endif
+ECHONL	= $(ComSpec) /c echo.
 MKDIR	= $(shell if not exist $(subst /,\,$1)\NUL md 2>NUL $(subst /,\,$1))
 COPY	= copy /y 2>NUL $(subst /,\,$1) $(subst /,\,$2)
 COPYR	= xcopy /y /e 2>NUL $(subst /,\,$1) $(subst /,\,$2)

Modified: apr/apr/branches/1.5.x/build/NWGNUenvironment.inc
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.5.x/build/NWGNUenvironment.inc?rev=1084541&r1=1084540&r2=1084541&view=diff
==============================================================================
--- apr/apr/branches/1.5.x/build/NWGNUenvironment.inc (original)
+++ apr/apr/branches/1.5.x/build/NWGNUenvironment.inc Wed Mar 23 11:24:36 2011
@@ -163,12 +163,11 @@ else
 ifeq "$(OS)" "Windows_NT"
 DEL	= $(shell if exist $(subst /,\,$1) del /q /f 2>NUL $(subst /,\,$1))
 RMDIR	= $(shell if exist $(subst /,\,$1)\NUL rd /q /s 2>NUL $(subst /,\,$1))
-ECHONL	= cmd /c echo.
 else
 DEL	= $(shell if exist $(subst /,\,$1) del 2>NUL $(subst /,\,$1))
 RMDIR	= $(shell if exist $(subst /,\,$1)\NUL deltree /y 2>NUL $(subst /,\,$1))
-ECHONL	= command /c echo.
 endif
+ECHONL	= $(ComSpec) /c echo.
 MKDIR	= $(shell if not exist $(subst /,\,$1)\NUL md 2>NUL $(subst /,\,$1))
 COPY	= copy /y 2>NUL $(subst /,\,$1) $(subst /,\,$2)
 COPYR	= xcopy /y /e 2>NUL $(subst /,\,$1) $(subst /,\,$2)

Modified: apr/apr/trunk/build/NWGNUenvironment.inc
URL: http://svn.apache.org/viewvc/apr/apr/trunk/build/NWGNUenvironment.inc?rev=1084541&r1=1084540&r2=1084541&view=diff
==============================================================================
--- apr/apr/trunk/build/NWGNUenvironment.inc (original)
+++ apr/apr/trunk/build/NWGNUenvironment.inc Wed Mar 23 11:24:36 2011
@@ -161,12 +161,11 @@ else
 ifeq "$(OS)" "Windows_NT"
 DEL	= $(shell if exist $(subst /,\,$1) del /q /f 2>NUL $(subst /,\,$1))
 RMDIR	= $(shell if exist $(subst /,\,$1)\NUL rd /q /s 2>NUL $(subst /,\,$1))
-ECHONL	= cmd /c echo.
 else
 DEL	= $(shell if exist $(subst /,\,$1) del 2>NUL $(subst /,\,$1))
 RMDIR	= $(shell if exist $(subst /,\,$1)\NUL deltree /y 2>NUL $(subst /,\,$1))
-ECHONL	= command /c echo.
 endif
+ECHONL	= $(ComSpec) /c echo.
 MKDIR	= $(shell if not exist $(subst /,\,$1)\NUL md 2>NUL $(subst /,\,$1))
 COPY	= copy /y 2>NUL $(subst /,\,$1) $(subst /,\,$2)
 COPYR	= xcopy /y /e 2>NUL $(subst /,\,$1) $(subst /,\,$2)