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

autoheader didn't run autoconf, it only seemed that way...

Changed order of autoheader/autoconf compared to before.

Rev: src/run_autoconfig:1.10
parent 5377b9f6
No related branches found
No related tags found
No related merge requests found
......@@ -7,10 +7,11 @@ need_to_make_depend=no
fix()
{
if [ -f $1/acconfig.h ]; then
# autoheader runs autoconf
echo "Running autoheader in $1"
( cd $1 ; autoheader )
elif [ -f $1/configure.in ]; then
fi
if [ -f $1/configure.in ]; then
echo "Running autoconf in $1"
( cd $1 ; autoconf )
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment