diff options
author | Guenter Knauf <fuankg@apache.org> | 2011-04-01 05:07:06 +0200 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2011-04-01 05:07:06 +0200 |
commit | 1983cb2ae711d3ee8ee81258ee925c32384c1554 (patch) | |
tree | b95dae5a1535735200be0fa96b3de079486f1d4d /build/NWGNUenvironment.inc | |
parent | Fixed lib target for old PCRE. (diff) | |
download | apache2-1983cb2ae711d3ee8ee81258ee925c32384c1554.tar.xz apache2-1983cb2ae711d3ee8ee81258ee925c32384c1554.zip |
Added TOUCH macro to kill Win32 dependency on external touch command.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1087563 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/NWGNUenvironment.inc')
-rw-r--r-- | build/NWGNUenvironment.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build/NWGNUenvironment.inc b/build/NWGNUenvironment.inc index e5fc7cef53..1e913f5ea9 100644 --- a/build/NWGNUenvironment.inc +++ b/build/NWGNUenvironment.inc @@ -148,6 +148,7 @@ MKDIR = mkdir -p $1 COPY = -cp -afv $1 $2 #COPYR = -cp -afr $1/* $2 COPYR = -rsync -aC $1/* $2 +TOUCH = -touch $1 ECHONL = echo "" DL = ' CAT = cat @@ -163,6 +164,7 @@ 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 /q /y /e 2>NUL $(subst /,\,$1) $(subst /,\,$2) +TOUCH = -copy /b 2>NUL $1 +,, CAT = type endif |