Update upstream source from tag 'upstream/3.1.1'
[xfishtank.git] / prevent-remakes
1 #!/bin/sh
2 # fix-timestamp.sh: prevents useless rebuilds after "cvs update"
3 sleep 1
4 # aclocal-generated aclocal.m4 depends on locally-installed
5 # '.m4' macro files, as well as on 'configure.ac'
6 touch aclocal.m4
7 sleep 1
8 # autoconf-generated configure depends on aclocal.m4 and on
9 # configure.ac
10 touch configure
11 # so does autoheader-generated config.h.in
12 touch config.h.in
13 # and all the automake-generated Makefile.in files
14 touch `find . -name Makefile.in -print`
15 # finally, the makeinfo-generated '.info' files depend on the
16 # corresponding '.texi' files
17 #touch doc/*.info
This page took 0.019655 seconds and 4 git commands to generate.