diff options
author | Glenn Morris <rgm@gnu.org> | 2010-05-03 20:26:38 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-05-03 20:26:38 -0700 |
commit | fa5e317ac05b234f6b8f0407b1123d697026069c (patch) | |
tree | 82d5089e499b10f4a34e4a50d0e032348c2d1b07 /oldXMenu | |
parent | e9bcdbf77c3b000543f84b69cdc8c1560f7f2009 (diff) | |
download | emacs-fa5e317ac05b234f6b8f0407b1123d697026069c.tar.gz |
Yet another missing piece of C_SWITCH commit.
* Makefile.in (C_SWITCH_SYSTEM): Use @C_SWITCH_SYSTEM@ rather than
@c_switch_system@.
* oldXMenu/Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE): Use
@C_SWITCH_SYSTEM@, @C_SWITCH_MACHINE@ rather than
@c_switch_system@, @c_switch_machine@.
Diffstat (limited to 'oldXMenu')
-rw-r--r-- | oldXMenu/ChangeLog | 6 | ||||
-rw-r--r-- | oldXMenu/Makefile.in | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/oldXMenu/ChangeLog b/oldXMenu/ChangeLog index 49569e5f79b..bf7f7a78247 100644 --- a/oldXMenu/ChangeLog +++ b/oldXMenu/ChangeLog @@ -1,3 +1,9 @@ +2010-05-04 Glenn Morris <rgm@gnu.org> + + * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE): Use + @C_SWITCH_SYSTEM@, @C_SWITCH_MACHINE@ rather than + @c_switch_system@, @c_switch_machine@. + 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu> * Makefile.in (C_SWITCH_X_SYSTEM): Define using autoconf. diff --git a/oldXMenu/Makefile.in b/oldXMenu/Makefile.in index 52c6fe97428..bdaa87695e0 100644 --- a/oldXMenu/Makefile.in +++ b/oldXMenu/Makefile.in @@ -47,8 +47,8 @@ srcdir=@srcdir@ VPATH=@srcdir@ C_SWITCH_X_SITE=@C_SWITCH_X_SITE@ C_SWITCH_X_SYSTEM=@C_SWITCH_X_SYSTEM@ -C_SWITCH_SYSTEM=@c_switch_system@ -C_SWITCH_MACHINE=@c_switch_machine@ +C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@ +C_SWITCH_MACHINE=@C_SWITCH_MACHINE@ EXTRA=insque.o CC=@CC@ |