diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2000-03-09 03:14:44 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2000-03-09 03:14:44 +0000 |
commit | f8c827e9401eb66e209cbc856a330acc6c99d342 (patch) | |
tree | bdc30ea6d539c00839c5d135e8a532ae52642b44 | |
parent | 9c28aef3931ac8c39b84ec1b9930d998e79cbf99 (diff) | |
download | gdb-f8c827e9401eb66e209cbc856a330acc6c99d342.zip gdb-f8c827e9401eb66e209cbc856a330acc6c99d342.tar.gz gdb-f8c827e9401eb66e209cbc856a330acc6c99d342.tar.bz2 |
2000-03-08 H.J. Lu (hjl@gnu.org)
* Makefile.am (install-exec-tooldir): Depend on
install-exec-bindir for parallel make.
* Makefile.in: Regenerated.
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/Makefile.am | 2 | ||||
-rw-r--r-- | gas/Makefile.in | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index b04ae72..e9607ba 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2000-03-08 H.J. Lu (hjl@gnu.org) + + * Makefile.am (install-exec-tooldir): Depend on + install-exec-bindir for parallel make. + * Makefile.in: Regenerated. + 2000-03-06 Nick Clifton <nickc@cygnus.com> * config/tc-m32r.c (struct md_longopts): Add -m32r command line diff --git a/gas/Makefile.am b/gas/Makefile.am index 67ff1ce..a7ccf21 100644 --- a/gas/Makefile.am +++ b/gas/Makefile.am @@ -606,7 +606,7 @@ install-exec-bindir: $(noinst_PROGRAMS) else :; fi; \ done -install-exec-tooldir: $(noinst_PROGRAMS) +install-exec-tooldir: install-exec-bindir $(noinst_PROGRAMS) $(mkinstalldirs) $(tooldir)/bin n=`echo as | sed '$(transform)'`; \ if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/as$(EXEEXT)" ]; then \ diff --git a/gas/Makefile.in b/gas/Makefile.in index 07b2eee..3bcb551 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -2209,7 +2209,7 @@ install-exec-bindir: $(noinst_PROGRAMS) else :; fi; \ done -install-exec-tooldir: $(noinst_PROGRAMS) +install-exec-tooldir: install-exec-bindir $(noinst_PROGRAMS) $(mkinstalldirs) $(tooldir)/bin n=`echo as | sed '$(transform)'`; \ if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/as$(EXEEXT)" ]; then \ |