From: Jeff Trawick Date: Thu, 13 Jun 2002 17:06:04 +0000 (+0000) Subject: avoid a non-portable shell construct ("builddir=$(shell pwd)") so that the X-Git-Tag: 2.0.38~62 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9b010e96b306785ebd861196e73143d9308c0cba;p=apache avoid a non-portable shell construct ("builddir=$(shell pwd)") so that the makefile created by apxs -g works on more systems it was broken on at least AIX and Tru64 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95646 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 7221663a6e..4e2c001e16 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ Changes with Apache 2.0.38 + *) Fix apxs so that the makefile created by "apxs -g" works on AIX and + Tru64 (and probably some other platforms). [Jeff Trawick] + *) Allow CGI scripts to return their Content-Length. This also fixes a hang on HEAD requests seen on certain platforms (such as FreeBSD). [Justin Erenkrantz] diff --git a/support/apxs.in b/support/apxs.in index 299e2ff82d..a934b1ae87 100644 --- a/support/apxs.in +++ b/support/apxs.in @@ -594,7 +594,7 @@ __DATA__ ## Autogenerated via ``apxs -n %NAME% -g''. ## -builddir=$(shell pwd) +builddir=. top_srcdir=%PREFIX% top_builddir=%PREFIX% include %INSTALLBUILDDIR%/special.mk