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

Fixed another automake bug.

Rev: src/run_autoconfig:1.19
parent 44bb42d0
No related branches found
No related tags found
No related merge requests found
...@@ -7,12 +7,10 @@ need_to_make_depend=no ...@@ -7,12 +7,10 @@ need_to_make_depend=no
find . -type d -print|egrep -v '/(CVS)|(RCS)$'| while read dir; do find . -type d -print|egrep -v '/(CVS)|(RCS)$'| while read dir; do
if [ -f $dir/Makefile.am ]; then if [ -f $dir/Makefile.am -a -f $dir/configure.in ]; then
if [ -f $dir/configure.in ]; then # aclocal needs to be run before autoconf
# aclocal needs to be run before autoconf echo "Running aclocal in $dir"
echo "Running aclocal in $dir" (cd $dir ; aclocal)
(cd $dir ; aclocal)
fi
echo "Running automake in $dir" echo "Running automake in $dir"
(cd $dir ; automake) (cd $dir ; automake)
fi fi
......
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