diff options
author | Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> | 1997-08-29 15:10:18 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-08-29 09:10:18 -0600 |
commit | 4f91a0f87a988b3a4efbcdabbaa9e92a42676e69 (patch) | |
tree | d82e6bb45f6f1f627547b5e147c9d731dc23df3a | |
parent | eae4b970345f9aaf42b778445e50fbf37e0f45dd (diff) | |
download | gcc-4f91a0f87a988b3a4efbcdabbaa9e92a42676e69.zip gcc-4f91a0f87a988b3a4efbcdabbaa9e92a42676e69.tar.gz gcc-4f91a0f87a988b3a4efbcdabbaa9e92a42676e69.tar.bz2 |
* Makefile.in (config.status): Depend on version.c
From-SVN: r14995
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a42a5d5..aba37c0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 1997-08-27 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> + * Makefile.in (config.status): Depend on version.c + * expr.h (insn_gen_function): Reenable prototype. * expr.c (move_by_pieces_1, clear_by_pieces_1): Fix prototype of diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 0e37786..ce365bc 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -699,7 +699,7 @@ cstamp-h: config.in config.status # Really, really stupid make features, such as SUN's KEEP_STATE, may force # a target to build even if it is up-to-date. So we must verify that # config.status does not exist before failing. -config.status: configure +config.status: configure version.c @if [ ! -f config.status ] ; then \ echo You must configure gcc. Look at the INSTALL file for details.; \ false; \ |