Send commitlog mailing list submissions to
commitlog@lists.openmoko.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]
You can reach the person managing the list at
[EMAIL PROTECTED]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:
1. r4403 - trunk/src/host/envedit ([EMAIL PROTECTED])
--- Begin Message ---
Author: werner
Date: 2008-04-28 09:55:03 +0200 (Mon, 28 Apr 2008)
New Revision: 4403
Modified:
trunk/src/host/envedit/envcpp.pl
Log:
- envcpp.pl: explicitly close stdout and check for errors to catch "disk full"
conditions
Modified: trunk/src/host/envedit/envcpp.pl
===================================================================
--- trunk/src/host/envedit/envcpp.pl 2008-04-28 07:03:04 UTC (rev 4402)
+++ trunk/src/host/envedit/envcpp.pl 2008-04-28 07:55:03 UTC (rev 4403)
@@ -181,5 +181,6 @@
$line = $_;
}
}
-close FILE || die $!;
+close FILE;
print "$line\n" || die $! if defined $line;
+close STDOUT || die $!;
--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog