diff options
author | Will Andrews <will@FreeBSD.org> | 2001-04-13 04:43:48 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2001-04-13 04:43:48 +0000 |
commit | cfa00f01bbc24053f541604ac751cf0ad914c404 (patch) | |
tree | 716f5e5a0ea1ea021b013c92e09bcb12ce707011 /www/apache22/files/patch-srclib:apr-util:Makefile.in | |
parent | Hopefully fix build for bento. (diff) |
Bring in Apache 2.0.16-beta. Just in time for the release...
PR: 26410
Submitted by: Chang, Hye-Shik <perky@python.or.kr>
Repocopied by: asami
Notes
Notes:
svn path=/head/; revision=41326
Diffstat (limited to 'www/apache22/files/patch-srclib:apr-util:Makefile.in')
-rw-r--r-- | www/apache22/files/patch-srclib:apr-util:Makefile.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/www/apache22/files/patch-srclib:apr-util:Makefile.in b/www/apache22/files/patch-srclib:apr-util:Makefile.in new file mode 100644 index 000000000000..652901dae28a --- /dev/null +++ b/www/apache22/files/patch-srclib:apr-util:Makefile.in @@ -0,0 +1,22 @@ +--- srclib/apr-util/Makefile.in.orig Wed Apr 4 12:27:42 2001 ++++ srclib/apr-util/Makefile.in Sun Apr 8 03:34:15 2001 +@@ -22,8 +22,8 @@ + + prefix=@prefix@ + exec_prefix=@exec_prefix@ +-libdir=@libdir@ +-includedir=@includedir@ ++libdir=$(prefix)/lib ++includedir=$(prefix)/include/apache + + delete-lib: + @if test -f $(TARGET_LIB); then \ +@@ -43,7 +43,7 @@ + if [ ! -d $(libdir) ]; then \ + @APR_SOURCE_DIR@/build/mkdir.sh $(libdir); \ + fi; \ +- libtool --mode=install cp $(TARGET_LIB) $(libdir) ++ ../../libtool --mode=install cp $(TARGET_LIB) $(libdir) + + $(TARGET_LIB): + @objects="`find $(SUBDIRS) -name '*.lo'`" ; \ |