diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-08-23 00:10:40 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-08-23 00:10:40 +0000 |
commit | 8ee90d359b7b02c911b3f49c5c1d883af1647023 (patch) | |
tree | 94e8e17362b5d397238c24a3cc0358492b76d0f3 /gas | |
parent | b69f18f103bab233cb2a370aaf1349e6a8f7521d (diff) | |
download | gdb-8ee90d359b7b02c911b3f49c5c1d883af1647023.zip gdb-8ee90d359b7b02c911b3f49c5c1d883af1647023.tar.gz gdb-8ee90d359b7b02c911b3f49c5c1d883af1647023.tar.bz2 |
* configure.in: Set and substitute HLDENV.
* configure: Rebuild.
* Makefile.in (HLDENV): New variable.
(as.new): Use $(HLDENV).
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/Makefile.in | 12 |
2 files changed, 9 insertions, 8 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index ad5dbd4..9007a52 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ Thu Aug 22 10:20:30 1996 Ian Lance Taylor <ian@cygnus.com> + * configure.in: Set and substitute HLDENV. + * configure: Rebuild. + * Makefile.in (HLDENV): New variable. + (as.new): Use $(HLDENV). + * ecoff.c (ecoff_directive_endef): Avoid a division by zero error if an array dimension is not known. diff --git a/gas/Makefile.in b/gas/Makefile.in index 12da6cb..8e6457a 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -52,7 +52,7 @@ man9dir = $(mandir)/man9 infodir = @infodir@ includedir = @includedir@ -VERSION=cygnus-2.6 +VERSION=cygnus-2.7.1 SHELL = /bin/sh @@ -75,6 +75,7 @@ CC = @CC@ CFLAGS = -g LDFLAGS = HLDFLAGS = @HLDFLAGS@ +HLDENV = @HLDENV@ RPATH_ENVVAR = @RPATH_ENVVAR@ MAKEOVERRIDES= @@ -254,7 +255,7 @@ STAGESTUFF = *.o as.new gasp.new $(OBJS): @ALL_OBJ_DEPS@ as.new: $(OBJS) $(LIBDEPS) - $(CC) $(HLDFLAGS) $(ALL_CFLAGS) $(LDFLAGS) -o as.new $(OBJS) $(LIBS) $(LOADLIBES) + $(HLDENV) $(CC) $(HLDFLAGS) $(ALL_CFLAGS) $(LDFLAGS) -o as.new $(OBJS) $(LIBS) $(LOADLIBES) $(OBJS): config.h as.h targ-env.h obj-format.h targ-cpu.h flonum.h expr.h \ struc-symbol.h write.h frags.h hash.h read.h symbols.h tc.h obj.h \ @@ -312,12 +313,7 @@ check: site.exp $(RUNTEST) --tool gas --srcdir $${srcdir}/testsuite $(RUNTESTFLAGS) config.status: configure - if [ -r config.status ]; then \ - sh ./config.status --recheck ; \ - else \ - echo You must configure gas. Look at the INSTALL file for details. ; \ - exit 1 ; \ - fi + $(SHELL) config.status --recheck config.h: config-stamp ; @true config-stamp: Makefile conf |