diff options
author | Ian Lance Taylor <ian@airs.com> | 1992-12-29 23:10:26 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1992-12-29 23:10:26 +0000 |
commit | 21412832197f6a2b8fd3d3ded0f47362fab0ccb0 (patch) | |
tree | d5c661f2c4380a1990ebe36939087a651ce24fa0 /test-build.mk | |
parent | cc29d6659be107d7774983fd22d1295682951a87 (diff) | |
download | gdb-21412832197f6a2b8fd3d3ded0f47362fab0ccb0.zip gdb-21412832197f6a2b8fd3d3ded0f47362fab0ccb0.tar.gz gdb-21412832197f6a2b8fd3d3ded0f47362fab0ccb0.tar.bz2 |
Tue Dec 29 15:06:00 1992 Ian Lance Taylor (ian@cygnus.com)
* build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it
to i386-sco3.2v4. Set TARGETS and CFLAGS for i386-sco3.2v4.
(all-cygnus, native, build-cygnus): Make
$(canonhost)-stamp-3stage-done, not $(host)....
* test-build.mk (stamp-3stage-compared): Use tail +10c for
i386-sco3.2v4. Added else true to if command.
Diffstat (limited to 'test-build.mk')
-rw-r--r-- | test-build.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test-build.mk b/test-build.mk index 035d17e..55aa229 100644 --- a/test-build.mk +++ b/test-build.mk @@ -477,7 +477,7 @@ $(host)-stamp-holes: found= ; \ for j in $(HOLE_DIRS) ; do \ if [ -x $$j/$$i ] ; then \ - cp $$j/$$i $(HOLESDIR) ; \ + ln -s $$j/$$i $(HOLESDIR) || cp $$j/$$i $(HOLESDIR) ; \ echo $$i from $$j ; \ found=t ; \ break ; \ @@ -511,7 +511,7 @@ comparison: $(host)-stamp-3stage-compared $(host)-stamp-3stage-compared: rm -f .bad-compare -ifeq ($(subst rs6000-ibm-aix,mips-sgi-irix4,$(subst mips-dec-ultrix,mips-sgi-irix4,$(host))),mips-sgi-irix4) +ifeq ($(subst i386-sco3.2v4,mips-sgi-irix4,$(subst rs6000-ibm-aix,mips-sgi-irix4,$(subst mips-dec-ultrix,mips-sgi-irix4,$(host)))),mips-sgi-irix4) for i in `cd $(STAGE3DIR) ; find . -name \*.o -print` ; do \ tail +10c $(STAGE2DIR)/$$i > foo1 ; \ tail +10c $(STAGE3DIR)/$$i > foo2 ; \ @@ -537,6 +537,7 @@ endif else \ rm -rf $(STAGE1DIR) $(STAGE2DIR) ; \ fi ; \ + else true ; \ fi ; \ fi touch $@ |