Update upstream source from tag 'upstream/3.1.1'
[xfishtank.git] / prevent-remakes
diff --git a/prevent-remakes b/prevent-remakes
new file mode 100755 (executable)
index 0000000..7c87191
--- /dev/null
@@ -0,0 +1,17 @@
+#!/bin/sh
+# fix-timestamp.sh: prevents useless rebuilds after "cvs update"
+sleep 1
+# aclocal-generated aclocal.m4 depends on locally-installed
+# '.m4' macro files, as well as on 'configure.ac'
+touch aclocal.m4
+sleep 1
+# autoconf-generated configure depends on aclocal.m4 and on
+# configure.ac
+touch configure
+# so does autoheader-generated config.h.in
+touch config.h.in
+# and all the automake-generated Makefile.in files
+touch `find . -name Makefile.in -print`
+# finally, the makeinfo-generated '.info' files depend on the
+# corresponding '.texi' files
+#touch doc/*.info
This page took 0.009992 seconds and 4 git commands to generate.