[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[commits] r3448 - in /fsf/trunk/libc: ChangeLog posix/Makefile
- To: commits@xxxxxxxxxx
- Subject: [commits] r3448 - in /fsf/trunk/libc: ChangeLog posix/Makefile
- From: eglibc@xxxxxxxxxx
- Date: Wed, 12 Sep 2007 07:03:37 -0000
Author: eglibc
Date: Wed Sep 12 00:03:35 2007
New Revision: 3448
Log:
Import glibc-mainline for 2007-09-12
Modified:
fsf/trunk/libc/ChangeLog
fsf/trunk/libc/posix/Makefile
Modified: fsf/trunk/libc/ChangeLog
==============================================================================
--- fsf/trunk/libc/ChangeLog (original)
+++ fsf/trunk/libc/ChangeLog Wed Sep 12 00:03:35 2007
@@ -1,3 +1,8 @@
+2007-09-11 Roland McGrath <roland@xxxxxxxxxx>
+
+ * posix/Makefile ($(objpfx)getconf.speclist): Make it empty if cross
+ compiling.
+
2007-09-07 Samuel Thibault <samuel.thibault@xxxxxxxxxxxx>
* sysdeps/mach/hurd/bits/ioctls.h (TAB3): New macro.
Modified: fsf/trunk/libc/posix/Makefile
==============================================================================
--- fsf/trunk/libc/posix/Makefile (original)
+++ fsf/trunk/libc/posix/Makefile Wed Sep 12 00:03:35 2007
@@ -301,6 +301,10 @@
done < $(objpfx)getconf.speclist
$(objpfx)getconf.speclist: $(objpfx)getconf
+ifeq (no,$(cross-compiling))
LC_ALL=C GETCONF_DIR=/dev/null \
$(run-program-prefix) $< _POSIX_V6_WIDTH_RESTRICTED_ENVS > $@.new
+else
+ > $@.new
+endif
mv -f $@.new $@