[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r1951 - in /branches/eglibc-2_5/libc: ChangeLog.eglibc option-groups.mak



Author: jimb
Date: Wed Apr 11 18:30:46 2007
New Revision: 1951

Log:
	* option-groups.mak: Use '../' if $(..) is unset.

Modified:
    branches/eglibc-2_5/libc/ChangeLog.eglibc
    branches/eglibc-2_5/libc/option-groups.mak

Modified: branches/eglibc-2_5/libc/ChangeLog.eglibc
==============================================================================
--- branches/eglibc-2_5/libc/ChangeLog.eglibc (original)
+++ branches/eglibc-2_5/libc/ChangeLog.eglibc Wed Apr 11 18:30:46 2007
@@ -1,3 +1,7 @@
+2007-04-11  Jim Blandy  <jimb@xxxxxxxxxxxxxxxx>
+
+	* option-groups.mak: Use '../' if $(..) is unset.
+
 2007-03-31  Jim Blandy  <jimb@xxxxxxxxxxxxxxxx>
 
 	Add the OPTION_EGLIBC_LIBM option group.

Modified: branches/eglibc-2_5/libc/option-groups.mak
==============================================================================
--- branches/eglibc-2_5/libc/option-groups.mak (original)
+++ branches/eglibc-2_5/libc/option-groups.mak Wed Apr 11 18:30:46 2007
@@ -8,7 +8,8 @@
 option_group_config_file ?= $(objdir)/option-groups.config
 
 # Read the default settings for all options.
-include $(..)option-groups.defaults
+# We're included before ../Rules, so we can't assume $(..) is set.
+include $(firstword $(..) ../)option-groups.defaults
 
 # Read the developer's option group selections, overriding the
 # defaults from option-groups.defaults.