diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-08-28 13:52:14 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-08-28 13:59:10 -0500 |
commit | 3ea37ac7005c64f378756a5dbc3fbfbc3bf8b053 (patch) | |
tree | a1f3b575e91e74f12e8a919ad53c3483ee437c28 /autogen.sh | |
parent | c8ca15c1231049143fce09a3456c11cba0a7a31d (diff) |
touch autogen.lastrun to make sure that such file exist before make
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh index bdb9aa9b7208..edf6200d9263 100755 --- a/autogen.sh +++ b/autogen.sh @@ -149,6 +149,10 @@ if (defined $ENV{NOCONFIGURE}) { close ($fh); } } + else + { + system("touch autogen.lastrun"); + } print "running ./configure with '" . join ("' '", @args), "'\n"; system ("./configure", @args) && die "Error running configure"; } |