summaryrefslogtreecommitdiffstats
path: root/Makefile.tpl
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2004-12-08 18:57:27 +0000
committerDJ Delorie <dj@redhat.com>2004-12-08 18:57:27 +0000
commitda3e88ae5b24b4c5aeca4e73791165f797a1189a (patch)
treee24ed53ea06a9a5ca49399f7b309964e1d01988d /Makefile.tpl
parent3b54b74f3a2e8ecb1120bfceb090dbf7f3de7f97 (diff)
downloadcygnal-da3e88ae5b24b4c5aeca4e73791165f797a1189a.tar.gz
cygnal-da3e88ae5b24b4c5aeca4e73791165f797a1189a.tar.bz2
cygnal-da3e88ae5b24b4c5aeca4e73791165f797a1189a.zip
* Makefile.tpl: Generate normal dependencies if the LHS module is
not bootstrapped. * Makefile.in: Regenerate.
Diffstat (limited to 'Makefile.tpl')
-rw-r--r--Makefile.tpl7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.tpl b/Makefile.tpl
index da82258e4..44c15fd53 100644
--- a/Makefile.tpl
+++ b/Makefile.tpl
@@ -1625,8 +1625,8 @@ configure-target-[+module+]: maybe-all-target-newlib maybe-all-target-libgloss
(define dep-maybe (lambda ()
(if (exist? "hard") "" "maybe-")))
- ;; dep-kind returns "normal" is the dependency is on an "install" target,
- ;; or if the LHS module is not bootstrapped. It returns "bootstrap" for
+ ;; dep-kind returns "normal" if the dependency is on an "install" target,
+ ;; or if either module is not bootstrapped. It returns "bootstrap" for
;; configure or build dependencies between bootstrapped modules; it returns
;; "prebootstrap" for configure or build dependencies of bootstrapped
;; modules on a build module (e.g. all-gcc on all-build-bison). All this
@@ -1638,7 +1638,8 @@ configure-target-[+module+]: maybe-all-target-newlib maybe-all-target-libgloss
(if (or (= (dep-subtarget "on") "install-")
(=* (dep-module "on") "target-")
- (not (hash-ref boot-modules (dep-module "module"))))
+ (not (hash-ref boot-modules (dep-module "module")))
+ (not (hash-ref boot-modules (dep-module "on"))))
"normal"
"bootstrap"))))