summaryrefslogtreecommitdiff
path: root/cvscompile.sh
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-09-20 15:05:59 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-09-20 15:05:59 +0000
commit0a06bccf23f2b2d040094d0c2f084b7a7142867c (patch)
treeae0a2636c45585d7ed00e6677ef46d1578c8efb0 /cvscompile.sh
parentbf60f537588a313844d8dd33a2aa98890f8ee1f5 (diff)
downloadxine-lib-0a06bccf23f2b2d040094d0c2f084b7a7142867c.tar.gz
xine-lib-0a06bccf23f2b2d040094d0c2f084b7a7142867c.tar.bz2
Fix libtool problem. automake 1.5 and libtool 1.4.2 seems hate their child
called AS. Don't use standard AM_PROG_AS, but our modified version (!x86 builder, report failure please). CVS patchset: 2721 CVS date: 2002/09/20 15:05:59
Diffstat (limited to 'cvscompile.sh')
-rwxr-xr-xcvscompile.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/cvscompile.sh b/cvscompile.sh
index a9c336d70..d6bb13c1e 100755
--- a/cvscompile.sh
+++ b/cvscompile.sh
@@ -16,16 +16,16 @@ rm -f config.cache
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
-m4_files="_xine.m4 arts.m4 esd.m4 iconv.m4 lcmessage.m4 vorbis.m4 aa.m4 gettext.m4 irixal.m4 ogg.m4 alsa.m4 codeset.m4 glibc21.m4 isc-posix.m4 progtest.m4 sdl.m4 xvid.m4 libfame.m4 dvdnav.m4"
+m4_files="_xine.m4 arts.m4 as.m4 esd.m4 iconv.m4 lcmessage.m4 vorbis.m4 aa.m4 gettext.m4 irixal.m4 ogg.m4 alsa.m4 codeset.m4 glibc21.m4 isc-posix.m4 progtest.m4 sdl.m4 xvid.m4 libfame.m4 dvdnav.m4"
if test -d $srcdir/m4; then
rm -f acinclude.m4
for m4f in $m4_files; do
cat $srcdir/m4/$m4f >> acinclude.m4
done
- ## automake 1.5x implement AM_PROG_AS, not older ones, so add it.
- if test x"$automake_1_5x" = x"no"; then
- cat $srcdir/m4/as.m4 >> acinclude.m4
- fi
+## ## automake 1.5x implement AM_PROG_AS, not older ones, so add it.
+## if test x"$automake_1_5x" = x"no"; then
+## cat $srcdir/m4/as.m4 >> acinclude.m4
+## fi
else
echo "Directory 'm4' is missing."
exit 1