From 96b012061dd24f947296a2f837afc411aea1fdec Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Thu, 13 Jun 2002 17:06:04 +0000 Subject: [PATCH] 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 --- CHANGES | 3 +++ support/apxs.in | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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 -- 2.40.0