Skip to content
Snippets Groups Projects
Commit ea82b931 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

now also runs autoheader

Rev: src/run_autoconfig:1.8
parent afa694e2
No related branches found
No related tags found
No related merge requests found
......@@ -7,11 +7,16 @@ 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
echo "Running autoheader in $1"
( cd $1 ; autoheader )
fi
if [ ! -f $1/dependencies ]; then
echo >$1/dependencies
need_to_make_depend=yes
fi
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment