diff options
author | Geoffrey Keating <geoffk@apple.com> | 2005-05-30 05:53:21 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2005-05-30 05:53:21 +0000 |
commit | 47b528da254db93078986040ff979048014c1b57 (patch) | |
tree | 197cfc4fef2e2e3e09f6fc225f5dff35338b5afe /gcc | |
parent | a9b31c40b3d0680eefd5c4b09e5566541394fcb8 (diff) | |
download | gcc-47b528da254db93078986040ff979048014c1b57.zip gcc-47b528da254db93078986040ff979048014c1b57.tar.gz gcc-47b528da254db93078986040ff979048014c1b57.tar.bz2 |
* Makefile.in (install-cpp): Depend on installdirs.
From-SVN: r100350
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 754a027..780a75f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-05-29 Geoffrey Keating <geoffk@apple.com> + + * Makefile.in (install-cpp): Depend on installdirs. + 2005-05-30 Kazu Hirata <kazu@cs.umass.edu> * tree-outof-ssa.c (_elim_graph): Change the type of edge_list diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 2794305..1839dd4 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3401,7 +3401,7 @@ install: install-common $(INSTALL_HEADERS) $(INSTALL_LIBGCC) \ lang.install-normal install-driver # Handle cpp installation. -install-cpp: cpp$(exeext) +install-cpp: installdirs cpp$(exeext) -rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext) -$(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext) -if [ x$(cpp_install_dir) != x ]; then \ |