rpm/elfutils/autogen.sh

18 lines
250 B
Bash
Executable File

#!/bin/sh
libtoolize --copy --force
aclocal
autoheader
automake -a -c
autoconf
if [ "$1" = "--noconfigure" ]; then
exit 0;
fi
if [ X"$@" = X -a "X`uname -s`" = "XLinux" ]; then
./configure --prefix=/usr "$@"
else
./configure "$@"
fi