aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gas/.Sanitize10
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/Makefile.in8
3 files changed, 17 insertions, 6 deletions
diff --git a/gas/.Sanitize b/gas/.Sanitize
index ea72128..eb57a92 100644
--- a/gas/.Sanitize
+++ b/gas/.Sanitize
@@ -58,7 +58,7 @@ debug.c
doc
expr.c
expr.h
-flonum-const.c
+flonum-konst.c
flonum-copy.c
flonum-mult.c
flonum.h
@@ -106,7 +106,13 @@ echo Done in `pwd`.
#
#
# $Log$
-# Revision 1.10 1992/02/22 20:44:46 sac
+# Revision 1.11 1992/03/13 16:04:15 sac
+# Fri Mar 13 08:03:03 1992 Steve Chamberlain (sac@thepub.cygnus.com)
+#
+# * flonum-const.c: renamed flonum-konst.c to stop dos name
+# conflict.
+#
+# Revision 1.10 1992/02/22 20:44:46 sac
# * app.c: MRI compatibility - allow single quote to start a string.
# * as.c: fix typo recently introduced.
# * as.h : Don't include aout/reloc.h - it's not right for COFF!
diff --git a/gas/ChangeLog b/gas/ChangeLog
index e5f72f9..63c2a3a 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+Fri Mar 13 08:03:03 1992 Steve Chamberlain (sac@thepub.cygnus.com)
+
+ * flonum-const.c: renamed flonum-konst.c to stop dos name
+ conflict.
+
Wed Mar 11 23:32:42 1992 K. Richard Pixley (rich@cygnus.com)
* configure.in: vxworks68 gets te-sun3.h.
diff --git a/gas/Makefile.in b/gas/Makefile.in
index 159bc2e..543ccb7 100644
--- a/gas/Makefile.in
+++ b/gas/Makefile.in
@@ -71,7 +71,7 @@ REAL_SOURCES = \
$(srcdir)/bignum-copy.c \
$(srcdir)/cond.c \
$(srcdir)/expr.c \
- $(srcdir)/flonum-const.c \
+ $(srcdir)/flonum-konst.c \
$(srcdir)/flonum-copy.c \
$(srcdir)/flonum-mult.c \
$(srcdir)/frags.c \
@@ -140,7 +140,7 @@ OBJS = \
bignum-copy.o \
cond.o \
expr.o \
- flonum-const.o \
+ flonum-konst.o \
flonum-copy.o \
flonum-mult.o \
frags.o \
@@ -205,7 +205,7 @@ SUBDIR_INCLUDES = -I.. -I$(srcdir) -I$(srcdir)/config
STAGESTUFF = *.o as.new
as.new: $(OBJS) $(LIBDEPS)
- -mv -f as.new as.old
+ [ ! -f as.new ] || mv as.new as.old
$(CC) $(ALL_CFLAGS) $(LDFLAGS) -o as.new $(OBJS) $(LIBS) $(LOADLIBES)
check:
@@ -241,7 +241,7 @@ expr.o : expr.c as.h host.h targ-env.h obj-format.h \
targ-cpu.h struc-symbol.h \
write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
-flonum-const.o : flonum-const.c flonum.h bignum.h
+flonum-konst.o : flonum-konst.c flonum.h bignum.h
flonum-copy.o : flonum-copy.c as.h host.h targ-env.h obj-format.h \
targ-cpu.h struc-symbol.h \
write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h