Lines 1-6
Link Here
|
1 |
--- ./srclib/apr/buildconf.orig 2009-12-12 00:36:35.693177242 +0000 |
1 |
--- srclib/apr/buildconf.orig 2009-11-12 17:19:49.000000000 -0500 |
2 |
+++ ./srclib/apr/buildconf 2009-12-12 00:37:00.222653819 +0000 |
2 |
+++ srclib/apr/buildconf 2010-04-30 19:22:40.116834529 -0400 |
3 |
@@ -71,6 +71,7 @@ |
3 |
@@ -28,7 +28,7 @@ |
|
|
4 |
# |
5 |
build/buildcheck.sh $verbose || exit 1 |
6 |
|
7 |
-libtoolize=`build/PrintPath glibtoolize1 glibtoolize libtoolize15 libtoolize14 libtoolize` |
8 |
+libtoolize="${LIBTOOLIZE}" |
9 |
if [ "x$libtoolize" = "x" ]; then |
10 |
echo "libtoolize not found in path" |
11 |
exit 1 |
12 |
@@ -65,7 +65,7 @@ |
13 |
# Expecting the code above to be very portable, but just in case... |
14 |
if [ -z "$ltfile" -o ! -f "$ltfile" ]; then |
15 |
ltpath=`dirname $libtoolize` |
16 |
- ltfile=`cd $ltpath/../share/aclocal ; pwd`/libtool.m4 |
17 |
+ ltfile=${LIBTOOL_M4} |
18 |
fi |
19 |
fi |
20 |
|
21 |
@@ -76,6 +76,7 @@ |
4 |
|
22 |
|
5 |
echo "buildconf: Using libtool.m4 at ${ltfile}." |
23 |
echo "buildconf: Using libtool.m4 at ${ltfile}." |
6 |
|
24 |
|
Lines 8-10
Link Here
|
8 |
cat $ltfile | sed -e 's/LIBTOOL=\(.*\)top_build/LIBTOOL=\1apr_build/' > build/libtool.m4 |
26 |
cat $ltfile | sed -e 's/LIBTOOL=\(.*\)top_build/LIBTOOL=\1apr_build/' > build/libtool.m4 |
9 |
|
27 |
|
10 |
# libtool.m4 from 1.6 requires ltsugar.m4 |
28 |
# libtool.m4 from 1.6 requires ltsugar.m4 |
11 |
- |
29 |
@@ -100,8 +101,10 @@ |
|
|
30 |
# Remove autoconf 2.5x's cache directory |
31 |
rm -rf autom4te*.cache |
32 |
|
33 |
-echo "Generating 'make' outputs ..." |
34 |
-build/gen-build.py $verbose make |
35 |
+if [ "x${FULLBUILD}" = "xon" ] ; then |
36 |
+ echo "Generating 'make' outputs ..." |
37 |
+ build/gen-build.py $verbose make |
38 |
+fi |
39 |
|
40 |
# Create RPM Spec file |
41 |
if [ -f `which cut` ]; then |