From: Harlan Stenn Date: Sat, 20 Nov 2010 07:18:46 +0000 (-0500) Subject: backport the html timestamp fixes for bootstrap X-Git-Tag: NTP_4_2_7P84~8^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7feb24ad78b0b3ea1e4c774b76490d502fff7b03;p=thirdparty%2Fntp.git backport the html timestamp fixes for bootstrap bk: 4ce77656jqG2plXc9YZVsLyTClQYhw --- diff --git a/bootstrap b/bootstrap index 79b20d650..80b8ab5b4 100755 --- a/bootstrap +++ b/bootstrap @@ -89,17 +89,21 @@ for f in ${prog_opt_files} 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