[Libreoffice-commits] .: autogen.sh
Tor Lillqvist
tml at kemper.freedesktop.org
Mon Mar 5 00:41:52 PST 2012
autogen.sh | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
New commits:
commit 0847fd63d773732ff3e441ef868957c55760d69a
Author: Thomas Collerton <tom.coll91 at gmail.com>
Date: Fri Mar 2 20:21:59 2012 +0100
Improvement to fdo#46565
diff --git a/autogen.sh b/autogen.sh
index 2133d07..2935619 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";
More information about the Libreoffice-commits
mailing list