From 0847fd63d773732ff3e441ef868957c55760d69a Mon Sep 17 00:00:00 2001 From: Thomas Collerton Date: Fri, 2 Mar 2012 20:21:59 +0100 Subject: Improvement to fdo#46565 --- autogen.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index 2133d075800e..2935619b3f80 100755 --- a/autogen.sh +++ b/autogen.sh @@ -146,7 +146,12 @@ if (defined $ENV{NOCONFIGURE}) { if (scalar(@cmdline_args) > 0) { # if there's already an autogen.lastrun, make a backup first if (-e "autogen.lastrun") { - system("cp autogen.lastrun autogen.lastrun.bak"); + open (my $fh, "autogen.lastrun") || warn "can't open autogen.lastrun. \n"; + open (BAK, ">autogen.lastrun.bak") || warn "can't create backup file. \n"; + while (<$fh>) { + print BAK; + } + close (BAK) && close ($fh); } # print "writing args to autogen.lastrun\n"; my $fh; @@ -159,7 +164,8 @@ if (defined $ENV{NOCONFIGURE}) { } elsif ( ! -e "autogen.lastrun") { - system("touch autogen.lastrun"); + open (my $fh, ">autogen.lastrun") || die "can't create autogen.lastrun"; + close ($fh); } print "running ./configure with '" . join ("' '", @args), "'\n"; system ("./configure", @args) && die "Error running configure"; -- cgit v1.2.3