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

Now handles automake.

Rev: src/run_autoconfig:1.17
parent 9afba77a
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,15 @@ need_to_make_depend=no
find . -type d -print|egrep -v '/(CVS)|(RCS)$'| while read dir; do
if [ -f $dir/Makefile.am -a -f $dir/configure.in ]; then
# aclocal needs to be run before autoconf
echo "Running aclocal in $dir"
(cd $dir ; aclocal)
echo "Running automake in $dir"
(cd $dir ; automake)
fi
if [ -f $dir/acconfig.h -a $dir/configure.in ]; then
echo "Running autoheader in $dir"
( cd $dir ; autoheader && echo foo >stamp-h.in )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment