1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Description:
upstream ships an out of date version of libtool. this ensures that
we build against an up-to-date version of libtool by running libtoolize
as part of our build process (this is called indirectly via ./buildconf.sh
from debian/rules)
.
note that we don't touch the libtool.m4 that they ship here, and this file
gets included in the build process as part of the phpize stuff. however,
this is solved in ./debian/rules where it's overwritten with a symlink.
Origin: vendor
Forwarded: no
Last-Update: 2010-01-18
--- a/build/build2.mk
+++ b/build/build2.mk
@@ -52,7 +52,8 @@ $(TOUCH_FILES):
aclocal.m4: configure.in acinclude.m4
@echo rebuilding $@
- cat acinclude.m4 ./build/libtool.m4 > $@
+ libtoolize --copy --install --automake --force
+ aclocal
configure: aclocal.m4 configure.in $(config_m4_files)
@echo rebuilding $@
|