diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-10-21 02:57:44 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-10-21 02:57:44 +0000 |
commit | 3c3a57e3debe388ec3959b94f6fd2b7cd9c27ab1 (patch) | |
tree | 0f9fcd5ae7219f1b4f94154e1dc07ab3d27b1ca6 | |
parent | 7d4c958f65501ef358cfd51734913e44c35e421c (diff) | |
download | emacs-3c3a57e3debe388ec3959b94f6fd2b7cd9c27ab1.tar.gz emacs-3c3a57e3debe388ec3959b94f6fd2b7cd9c27ab1.tar.bz2 emacs-3c3a57e3debe388ec3959b94f6fd2b7cd9c27ab1.zip |
(LD_SWITCH_MACHINE): Conditionalize this
on THIS_IS_MAKEFILE instead of on emacs.
-rw-r--r-- | src/m/ibmrs6000.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/m/ibmrs6000.h b/src/m/ibmrs6000.h index 11b0e519276..fe876cb9462 100644 --- a/src/m/ibmrs6000.h +++ b/src/m/ibmrs6000.h @@ -165,9 +165,7 @@ Boston, MA 02111-1307, USA. */ which most machines don't have. We use the name .inp instead of .imp because .inp is a better convention to use in make-dist for naming random input files. */ -#ifdef emacs /* Prevent this from being used in configure. - This also makes it not be used in lib-src, - but that is probably ok. */ +#ifdef THIS_IS_MAKEFILE /* Don't use this in configure. */ #ifdef AIX4 #define LD_SWITCH_MACHINE -Wl,-bnodelcsect #else /* not AIX4 */ @@ -177,7 +175,7 @@ Boston, MA 02111-1307, USA. */ #define LD_SWITCH_MACHINE -Wl,-bnso,-bnodelcsect,-bI:/lib/syscalls.exp,-bI:$(srcdir)/m/ibmrs6000.inp #endif #endif /* not AIX4 */ -#endif +#endif /* THIS_IS_MAKEFILE */ /* Avoid gcc 2.7.x collect2 bug by using /bin/ld instead. */ #if __GNUC__ == 2 && __GNUC_MINOR__ == 7 |