]> git.eshelyaron.com Git - emacs.git/commitdiff
(LD_SWITCH_MACHINE): Conditionalize this
authorKarl Heuer <kwzh@gnu.org>
Tue, 21 Oct 1997 02:57:44 +0000 (02:57 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 21 Oct 1997 02:57:44 +0000 (02:57 +0000)
on THIS_IS_MAKEFILE instead of on emacs.

src/m/ibmrs6000.h

index 11b0e519276adbecb997e313705b7ffa1cd11de4..fe876cb9462f375d40056551ae431e7b2c76197a 100644 (file)
@@ -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