* Makerules (Versions.all, sysd-versions): Test $(sysd-sorted-done)
authorRoland McGrath <roland@gnu.org>
Sun, 19 Mar 2000 23:59:13 +0000 (23:59 +0000)
committerRoland McGrath <roland@gnu.org>
Sun, 19 Mar 2000 23:59:13 +0000 (23:59 +0000)
rather than $(sysd-dirs-done) to protect these rules.

ChangeLog
Makerules

index 49e6bf7..0cbd719 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2000-03-19  Roland McGrath  <roland@baalperazim.frob.com>
 
+       * Makerules (Versions.all, sysd-versions): Test $(sysd-sorted-done)
+       rather than $(sysd-dirs-done) to protect these rules.
+
        * Makerules (version-renames.def): Target removed.
        (Versions.all): Depend on soversions.i directly and parse it.
 
index 2ee7e7e..d64f352 100644 (file)
--- a/Makerules
+++ b/Makerules
@@ -278,7 +278,7 @@ no_deps=t
 endif
 
 # Generate version maps, but wait until sysdep-subdirs is known
-ifdef sysd-dirs-done
+ifeq ($(sysd-sorted-done),t)
 ifeq ($(versioning),yes)
 -include $(common-objpfx)sysd-versions
 $(addprefix $(common-objpfx),$(version-maps)): $(common-objpfx)sysd-versions
@@ -313,7 +313,7 @@ $(common-objpfx)sysd-versions: $(common-objpfx)Versions.all \
        mv -f $@T $@
 endif # avoid-generated
 endif # $(versioning) = yes
-endif # sysd-dirs-done
+endif # sysd-sorted-done
 
 
 ifndef compile-command.S