mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
CVS fixes
This commit is contained in:
parent
8785f9288e
commit
9518a4581f
1 changed files with 13 additions and 11 deletions
|
|
@ -1,18 +1,20 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
share=/usr/share/automake/missing
|
if test "x$AUTOMAKE_DIR" = "x"; then
|
||||||
|
if test -d /usr/local/share/automake; then
|
||||||
|
AUTOMAKE_DIR=/usr/local/share/automake
|
||||||
|
fi
|
||||||
|
if test -d /usr/share/automake; then
|
||||||
|
AUTOMAKE_DIR="/usr/share/automake"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
for f in install-sh mkinstalldirs missing; do
|
||||||
|
cp -av $AUTOMAKE_DIR/$f .
|
||||||
|
done
|
||||||
|
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS
|
||||||
automake --foreign
|
automake --foreign --add-missing
|
||||||
if [ ! -r install-sh ]; then
|
|
||||||
cp $share/install-sh .
|
|
||||||
fi
|
|
||||||
if [ ! -r mkinstalldirs ]; then
|
|
||||||
cp $share/mkinstalldirs .
|
|
||||||
fi
|
|
||||||
if [ ! -r missing ]; then
|
|
||||||
cp $share/missing .
|
|
||||||
fi
|
|
||||||
autoconf
|
autoconf
|
||||||
export CFLAGS='-O2 -Wall -pipe -g'
|
export CFLAGS='-O2 -Wall -pipe -g'
|
||||||
echo "CFLAGS=$CFLAGS"
|
echo "CFLAGS=$CFLAGS"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue