Update upstream source from tag 'upstream/3.1.1'
[xfishtank.git] / prevent-remakes
CommitLineData
4c1bd65b
MG
1#!/bin/sh
2# fix-timestamp.sh: prevents useless rebuilds after "cvs update"
3sleep 1
4# aclocal-generated aclocal.m4 depends on locally-installed
5# '.m4' macro files, as well as on 'configure.ac'
6touch aclocal.m4
7sleep 1
8# autoconf-generated configure depends on aclocal.m4 and on
9# configure.ac
10touch configure
11# so does autoheader-generated config.h.in
12touch config.h.in
13# and all the automake-generated Makefile.in files
14touch `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.009168 seconds and 4 git commands to generate.