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
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
autoconf # Bootstrap script
cd modules
for a in * 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 do
case $a in case $a in
CVS) ;; modules/CVS) ;;
RCS) ;; modules/RCS) ;;
*) *) fix $a ;;
if [ -d $a ]; then
( cd $a ; autoconf )
fi
;;
esac esac
done done
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment