diff options
author | Guenter Knauf <fuankg@apache.org> | 2009-07-20 19:40:59 +0200 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2009-07-20 19:40:59 +0200 |
commit | 4a0ebc083c5d3671deb188a0425545b81160d2b3 (patch) | |
tree | 5bf3e850284d6487b4ab1d3cdea404d94ebceb95 /build/NWGNUmakefile | |
parent | Enable XP visual style. (diff) | |
download | apache2-4a0ebc083c5d3671deb188a0425545b81160d2b3.tar.xz apache2-4a0ebc083c5d3671deb188a0425545b81160d2b3.zip |
gnu-make's abspath seems broken when the path is already absolute.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@795930 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | build/NWGNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/NWGNUmakefile b/build/NWGNUmakefile index f74e92b737..2054beb12f 100644 --- a/build/NWGNUmakefile +++ b/build/NWGNUmakefile @@ -75,11 +75,11 @@ $(NWOS)/test_char.h: gen_test_char.exe $(AP_WORK)/server/gen_test_char.c else ifneq "$(wildcard $(NWOS)/chartables.c)" "$(NWOS)/chartables.c" -$(error Error: required source $(abspath $(NWOS)/chartables.c) not found!) +$(error Error: required source $(NWOS)/chartables.c not found!) endif ifneq "$(wildcard $(NWOS)/test_char.h)" "$(NWOS)/test_char.h" -$(error Error: required header $(abspath $(NWOS)/test_char.h) not found!) +$(error Error: required header $(NWOS)/test_char.h not found!) endif endif |