X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=boot;h=a21691ff21d87bc5337f92290e21bf6f41126eff;hb=d3b882ae7fc0d4b499f194cc1914cc4562ebbd7c;hp=1889e8cac8c65504c5ef52f5c7431d3f8ed238df;hpb=e97891e69706e84761c6bcac783526f9dafe7f2e;p=ghc-hetmet.git diff --git a/boot b/boot index 1889e8c..a21691f 100644 --- a/boot +++ b/boot @@ -9,18 +9,19 @@ for dir in `cat libraries/core-packages`; do fi done -# We don't recurse into the library packages with autoreconf anymore, so we -# have to do this manually. To avoid a strict dependency on autoreconf, we -# are careful to call autoreconf only when configure does not exist yet or the -# corresponding configure.ac is newer. This would be dead easy if every shell -# supported the "-nt" option for "test", but this is not the case. The only -# portable solution seems to be via find's "-newer" option or to basically give -# up and replace find with perl: :-P +# We don't recurse into the library packages with autoreconf anymore, +# so we have to do this manually. To avoid a strict dependency on +# autoreconf, we are careful to call autoreconf only when configure +# does not exist yet or the corresponding configure.ac/aclocal.m4 is +# newer. This would be dead easy if every shell supported the "-nt" +# option for "test", but this is not the case. The only portable +# solution seems to be via find's "-newer" option or to basically give +# up and replace find with perl: :-P # # perl -e 'print "configure.ac\n" if -M "configure.ac" < -M "configure"' for dir in . libraries/*; do if test -f $dir/configure.ac; then - ( cd $dir ; { test ! -f configure || test -n "`find configure.ac -newer configure`"; } && autoreconf ) + ( cd $dir ; { test ! -f configure || test -n "`find -L configure.ac -newer configure`" || (test -f aclocal.m4 && test -n "`find -L aclocal.m4 -newer configure`"); } && autoreconf ) fi done