bk: 4cc73d45XJEKbkp2K7RXKuW4bbXayw
+* For the bootstrap script, touch .html files last.
(4.2.7p72) 2010/10/26 Released by Harlan Stenn <stenn@ntp.org>
* [Bug 1679] Fix test for -lsocket.
* Clean up missing ;; entries in configure.ac.
do
f=`echo $f | sed -e 's/-opts.def//'`
l=
+ lh=
for i in `ls -1 $f*`
do
case "$i" in
- *.c|*.h|*.1|*.html|*.texi|*.menu)
+ *.c|*.h|*.1|*.texi|*.menu)
l="$l $i"
;;
+ *.html)
+ lh="$lh $i"
+ ;;
esac
done
- case "$l" in
- '') ;;
- *) touch $l
+ case "$l:$lh" in
+ ':') ;;
+ *) touch $l $lh
;;
esac
done