diff options
author | Glenn Morris <rgm@gnu.org> | 2010-05-24 20:53:12 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-05-24 20:53:12 -0700 |
commit | 8009a5e891cdd300e594812e71e7997592bd7c04 (patch) | |
tree | b010c73286087702d8d060c2c08b0685dd25f896 /src/Makefile.in | |
parent | e545800352a38dc328cc5251bb44d1e93d0d2012 (diff) | |
download | emacs-8009a5e891cdd300e594812e71e7997592bd7c04.tar.gz |
Move some stuff from LD_SWITCH_SYSTEM to LD_SWITCH_SYSTEM_TEMACS.
* configure.in (LD_SWITCH_SYSTEM): Move some gnu-linux stuff...
(LD_SWITCH_SYSTEM_TEMACS): ... to here.
* src/Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
variables it may reference.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 0bb36ecb838..2ed5ca4bfd4 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -96,12 +96,6 @@ C_SWITCH_X_SITE=@C_SWITCH_X_SITE@ ## substituted in this or any other Makefile. Cf C_SWITCH_X_SITE. LD_SWITCH_X_SITE= -## This holds any special options for linking temacs only (ie, not -## used by configure). Not used elsewhere because it sometimes -## contains options that have to do with using Emacs's crt0, -## which are only good with temacs. -LD_SWITCH_SYSTEM_TEMACS=@LD_SWITCH_SYSTEM_TEMACS@ - ## Next two must come before LD_SWITCH_SYSTEM. ## If needed, a -R option that says where to find X windows at run time. LD_SWITCH_X_SITE_AUX=@LD_SWITCH_X_SITE_AUX@ @@ -111,6 +105,12 @@ LD_SWITCH_X_SITE_AUX_RPATH=@LD_SWITCH_X_SITE_AUX_RPATH@ ## System-specific LDFLAGS. LD_SWITCH_SYSTEM=@LD_SWITCH_SYSTEM@ +## This holds any special options for linking temacs only (ie, not +## used by configure). Not used elsewhere because it sometimes +## contains options that have to do with using Emacs's crt0, +## which are only good with temacs. +LD_SWITCH_SYSTEM_TEMACS=@LD_SWITCH_SYSTEM_TEMACS@ + ## Flags to pass to ld only for temacs. TEMACS_LDFLAGS = $(LD_SWITCH_SYSTEM) $(LD_SWITCH_SYSTEM_TEMACS) |