summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2009-06-06 23:16:46 +0000
committerPaul Smith <psmith@gnu.org>2009-06-06 23:16:46 +0000
commitb9f831b858761366e0db418e6f226a053ed550af (patch)
treec1136963019da597c69848df352510c752a6d4ea /ChangeLog
parent71385e12250ea56ddb2186f22a3f741684562ac5 (diff)
downloadgunmake-b9f831b858761366e0db418e6f226a053ed550af.tar.gz
- Work around a bug in glibc glob(3), by avoiding GLOB_NOCHECK.
- Fix issue in very parallel builds found building glibc.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a3ea3e4..1c2d0c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2009-06-06 Paul Smith <psmith@gnu.org>
+
+ * remake.c (check_dep): Only set the target's state to not-started
+ if it's not already running. Found this while testing -j10 builds
+ of glibc: various targets were being rebuilt multiple times.
+
+ * read.c (multi_glob): Don't pass GLOB_NOCHECK to glob(3); instead
+ handle the GLOB_NOMATCH error. This is to work around Sourceware.org
+ Bugzilla bug 10246.
+
2009-06-04 Paul Smith <psmith@gnu.org>
* read.c (eval): Skip initial whitespace (ffeed, vtab, etc.)