diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-08-05 19:37:57 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-08-05 19:37:57 +0000 |
commit | 0e25edcacc69ff157685d6653fb1304eae9b773d (patch) | |
tree | e3ce0b34f5015c4497607f51fd017c14af5af512 | |
parent | 3cf125fcee8ee50a729fc409552bc61e99effc7e (diff) | |
download | gdb-0e25edcacc69ff157685d6653fb1304eae9b773d.zip gdb-0e25edcacc69ff157685d6653fb1304eae9b773d.tar.gz gdb-0e25edcacc69ff157685d6653fb1304eae9b773d.tar.bz2 |
* Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Makefile.in | 6 |
2 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,7 @@ Tue Aug 5 14:08:51 1997 Ian Lance Taylor <ian@cygnus.com> + * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new. + * ylwrap: If the program is a relative path, force it to be absolute. diff --git a/Makefile.in b/Makefile.in index 29eccd4..dddb6f3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -182,7 +182,7 @@ CC_FOR_TARGET = ` \ if [ -f $$r/gcc/xgcc ] ; then \ if [ -f $$r/$(TARGET_SUBDIR)/newlib/Makefile ] ; then \ if [ -f $$r/$(TARGET_SUBDIR)/winsup/Makefile ] ; then \ - echo $$r/gcc/xgcc -B$$r/gcc/ -B$$r/newlib/ -L$$r/winsup -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \ + echo $$r/gcc/xgcc -B$$r/gcc/ -B$$r/newlib/ -L$$r/$(TARGET_SUBDIR)/winsup -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \ else \ echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \ fi; \ @@ -303,8 +303,8 @@ RANLIB_FOR_TARGET = ` \ fi` NM_FOR_TARGET = ` \ - if [ -f $$r/binutils/nm.new ] ; then \ - echo $$r/binutils/nm.new ; \ + if [ -f $$r/binutils/nm-new ] ; then \ + echo $$r/binutils/nm-new ; \ else \ if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ echo $(NM); \ |