Skip to content
Snippets Groups Projects
Commit 13c3b483 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Now doesn't run autoconf if autoheader has already run.

Rev: src/run_autoconfig:1.9
parent ad9ad32c
Branches
Tags
No related merge requests found
......@@ -6,14 +6,13 @@ need_to_make_depend=no
fix()
{
if [ -d $1 ]; then
echo "Running autoconf in $1"
( cd $1 ; autoconf )
fi
if [ -f $1/acconfig.h ]; then
# autoheader runs autoconf
echo "Running autoheader in $1"
( cd $1 ; autoheader )
elif [ -f $1/configure.in ]; then
echo "Running autoconf in $1"
( cd $1 ; autoconf )
fi
if [ ! -f $1/dependencies ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment