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

Now generates Makefile.in if needed

Rev: src/run_autoconfig:1.2
parent 10456642
Branches
Tags
No related merge requests found
#!/bin/sh
autoconf
cd modules
for a in *
# Bootstrap script
fix()
{
if [ -d $1 ]; then
( cd $1 ; autoconf )
fi
if [ ! -f $1/Makefile.in ]; then
cp $1/Makefile.src $1/Makefile.in
fi
}
fix .
for a in modules/*
do
case $a in
CVS) ;;
RCS) ;;
*)
if [ -d $a ]; then
( cd $a ; autoconf )
fi
;;
modules/CVS) ;;
modules/RCS) ;;
*) fix $a ;;
esac
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment