From: Guenter Knauf Date: Mon, 20 Jul 2009 17:40:59 +0000 (+0000) Subject: gnu-make's abspath seems broken when the path is already absolute. X-Git-Tag: 2.3.3~421 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4a0ebc083c5d3671deb188a0425545b81160d2b3;p=apache 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 --- 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