aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Stump <mrs@gcc.gnu.org>2005-10-29 21:02:23 +0000
committerMike Stump <mrs@gcc.gnu.org>2005-10-29 21:02:23 +0000
commit06bc79e0bb193e7199913cfab1a112b5c3f3da34 (patch)
tree2058c37a50a6817dee26b15226a527231c807bf0
parent55898b2c1b1980749601ef9db643c155fa21a60c (diff)
downloadgcc-06bc79e0bb193e7199913cfab1a112b5c3f3da34.zip
gcc-06bc79e0bb193e7199913cfab1a112b5c3f3da34.tar.gz
gcc-06bc79e0bb193e7199913cfab1a112b5c3f3da34.tar.bz2
Makefile.am (kinds.h): Remove target, if command fails.
* Makefile.am (kinds.h): Remove target, if command fails. (selected_int_kind.inc): Likewise. (selected_real_kind.inc): Likewise. * Makefile.in: Regenerate. From-SVN: r105995
-rw-r--r--libgfortran/ChangeLog16
-rw-r--r--libgfortran/Makefile.am6
-rw-r--r--libgfortran/Makefile.in6
3 files changed, 18 insertions, 10 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index 6311d64..9d225c1 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,4 +1,12 @@
+2005-10-29 Mike Stump <mrs@apple.com>
+
+ * Makefile.am (kinds.h): Remove target, if command fails.
+ (selected_int_kind.inc): Likewise.
+ (selected_real_kind.inc): Likewise.
+ * Makefile.in: Regenerate.
+
2005-10-28 Francois-Xavier Coudert <coudert@clipper.ens.fr>
+
* Makefile.am (intrinsics): Add signal.c.
* Makefile.in: Regenerate.
@@ -34,12 +42,12 @@
* io/transfer.c (init_loop_spec): New function to initialize
an array_loop_spec.
(next_array_record): New function to return the index to the next array
- record by incrementing through the array_loop_spec.
+ record by incrementing through the array_loop_spec.
(next_record_r): Use new function.
(next_record_w): Use new function.
(finalize_transfer): Free memory allocated for array_loop_spec.
* io/unit.c (get_array_unit_len): Delete this function. Use new
- function init_loop_spec to initialize the array_loop_spec.
+ function init_loop_spec to initialize the array_loop_spec.
2005-10-24 Paul Thomas <pault@gcc.gnu.org>
@@ -150,7 +158,7 @@
PR libgfortran/24313
* c99_functions.c (csqrtf, csqrt): Fix choice of branch cut. Note
- csqrt{f} were imported from glibc, and this bug is still present
+ csqrt{f} were imported from glibc, and this bug is still present
there. glibc PR is 1146.
2005-10-07 Janne Blomqvist <jblomqvi@cc.hut.fi>
@@ -189,7 +197,7 @@
* io/unix.c (mem_alloc_w_at): Remove call to generate_error end-of-file.
* io/write.c (write_float): Add checks for NULL pointer returns from
write_block calls. (write_integer): Same.
-
+
2005-10-03 Jakub Jelinek <jakub@redhat.com>
* runtime/memory.c (allocate_size): Malloc 1 byte if size == 0.
diff --git a/libgfortran/Makefile.am b/libgfortran/Makefile.am
index b47b768..696ac3f 100644
--- a/libgfortran/Makefile.am
+++ b/libgfortran/Makefile.am
@@ -578,7 +578,7 @@ I_M4_DEPS0=$(I_M4_DEPS) m4/iforeach.m4
I_M4_DEPS1=$(I_M4_DEPS) m4/ifunction.m4
kinds.h: $(srcdir)/mk-kinds-h.sh
- $(SHELL) $(srcdir)/mk-kinds-h.sh '$(FCCOMPILE)' > $@
+ $(SHELL) $(srcdir)/mk-kinds-h.sh '$(FCCOMPILE)' > $@ || rm $@
kinds.inc: kinds.h
grep '^#' < kinds.h > $@
@@ -587,10 +587,10 @@ c99_protos.inc: $(srcdir)/c99_protos.h
grep '^#' < $(srcdir)/c99_protos.h > $@
selected_int_kind.inc: $(srcdir)/mk-sik-inc.sh
- $(SHELL) $(srcdir)/mk-sik-inc.sh '$(FCCOMPILE)' > $@
+ $(SHELL) $(srcdir)/mk-sik-inc.sh '$(FCCOMPILE)' > $@ || rm $@
selected_real_kind.inc: $(srcdir)/mk-srk-inc.sh
- $(SHELL) $(srcdir)/mk-srk-inc.sh '$(FCCOMPILE)' > $@
+ $(SHELL) $(srcdir)/mk-srk-inc.sh '$(FCCOMPILE)' > $@ || rm $@
fpu-target.h: $(srcdir)/$(FPU_HOST_HEADER)
cp $(srcdir)/$(FPU_HOST_HEADER) $@
diff --git a/libgfortran/Makefile.in b/libgfortran/Makefile.in
index 256fe1d..d52a54a 100644
--- a/libgfortran/Makefile.in
+++ b/libgfortran/Makefile.in
@@ -2694,7 +2694,7 @@ uninstall-am: uninstall-info-am uninstall-toolexeclibLTLIBRARIES
kinds.h: $(srcdir)/mk-kinds-h.sh
- $(SHELL) $(srcdir)/mk-kinds-h.sh '$(FCCOMPILE)' > $@
+ $(SHELL) $(srcdir)/mk-kinds-h.sh '$(FCCOMPILE)' > $@ || rm $@
kinds.inc: kinds.h
grep '^#' < kinds.h > $@
@@ -2703,10 +2703,10 @@ c99_protos.inc: $(srcdir)/c99_protos.h
grep '^#' < $(srcdir)/c99_protos.h > $@
selected_int_kind.inc: $(srcdir)/mk-sik-inc.sh
- $(SHELL) $(srcdir)/mk-sik-inc.sh '$(FCCOMPILE)' > $@
+ $(SHELL) $(srcdir)/mk-sik-inc.sh '$(FCCOMPILE)' > $@ || rm $@
selected_real_kind.inc: $(srcdir)/mk-srk-inc.sh
- $(SHELL) $(srcdir)/mk-srk-inc.sh '$(FCCOMPILE)' > $@
+ $(SHELL) $(srcdir)/mk-srk-inc.sh '$(FCCOMPILE)' > $@ || rm $@
fpu-target.h: $(srcdir)/$(FPU_HOST_HEADER)
cp $(srcdir)/$(FPU_HOST_HEADER) $@