diff options
| author | Richard M. Stallman | 1993-09-16 15:34:08 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-09-16 15:34:08 +0000 |
| commit | 0028bd66b4bb36598ca58e7fd20eca3314007430 (patch) | |
| tree | 0569b63f21fbbff173aa92e722eba2bc93adf8a4 | |
| parent | 214507c70f05935aac7cfa811b2e3a47335943fb (diff) | |
| download | emacs-0028bd66b4bb36598ca58e7fd20eca3314007430.tar.gz emacs-0028bd66b4bb36598ca58e7fd20eca3314007430.zip | |
In the file ${tempcname}, use configure___ instead of @configure@.
| -rwxr-xr-x | configure1.in | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/configure1.in b/configure1.in index 1d674248e7d..f48f5c2f6bd 100755 --- a/configure1.in +++ b/configure1.in | |||
| @@ -1114,8 +1114,8 @@ echo ' | |||
| 1114 | #ifndef C_SWITCH_SYSTEM | 1114 | #ifndef C_SWITCH_SYSTEM |
| 1115 | #define C_SWITCH_SYSTEM | 1115 | #define C_SWITCH_SYSTEM |
| 1116 | #endif | 1116 | #endif |
| 1117 | @configure@ libsrc_libs=LIBS_MACHINE LIBS_SYSTEM | 1117 | configure___ libsrc_libs=LIBS_MACHINE LIBS_SYSTEM |
| 1118 | @configure@ c_switch_system=C_SWITCH_SYSTEM | 1118 | configure___ c_switch_system=C_SWITCH_SYSTEM |
| 1119 | 1119 | ||
| 1120 | #ifndef LIB_X11_LIB | 1120 | #ifndef LIB_X11_LIB |
| 1121 | #define LIB_X11_LIB -lX11 | 1121 | #define LIB_X11_LIB -lX11 |
| @@ -1128,18 +1128,18 @@ echo ' | |||
| 1128 | #ifndef LIBX11_SYSTEM | 1128 | #ifndef LIBX11_SYSTEM |
| 1129 | #define LIBX11_SYSTEM | 1129 | #define LIBX11_SYSTEM |
| 1130 | #endif | 1130 | #endif |
| 1131 | @configure@ LIBX=LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM | 1131 | configure___ LIBX=LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM |
| 1132 | 1132 | ||
| 1133 | #ifdef UNEXEC | 1133 | #ifdef UNEXEC |
| 1134 | @configure@ unexec=UNEXEC | 1134 | configure___ unexec=UNEXEC |
| 1135 | #else | 1135 | #else |
| 1136 | @configure@ unexec=unexec.o | 1136 | configure___ unexec=unexec.o |
| 1137 | #endif | 1137 | #endif |
| 1138 | 1138 | ||
| 1139 | #ifdef SYSTEM_MALLOC | 1139 | #ifdef SYSTEM_MALLOC |
| 1140 | @configure@ system_malloc=yes | 1140 | configure___ system_malloc=yes |
| 1141 | #else | 1141 | #else |
| 1142 | @configure@ system_malloc=no | 1142 | configure___ system_malloc=no |
| 1143 | #endif | 1143 | #endif |
| 1144 | 1144 | ||
| 1145 | #ifndef C_DEBUG_SWITCH | 1145 | #ifndef C_DEBUG_SWITCH |
| @@ -1151,17 +1151,17 @@ echo ' | |||
| 1151 | #endif | 1151 | #endif |
| 1152 | 1152 | ||
| 1153 | #ifdef __GNUC__ | 1153 | #ifdef __GNUC__ |
| 1154 | @configure@ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH | 1154 | configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH |
| 1155 | #else | 1155 | #else |
| 1156 | @configure@ CFLAGS=C_DEBUG_SWITCH | 1156 | configure___ CFLAGS=C_DEBUG_SWITCH |
| 1157 | #endif | 1157 | #endif |
| 1158 | ' > ${tempcname} | 1158 | ' > ${tempcname} |
| 1159 | # The value of CPP is a quoted variable reference, so we need to do this | 1159 | # The value of CPP is a quoted variable reference, so we need to do this |
| 1160 | # to get its actual value... | 1160 | # to get its actual value... |
| 1161 | CPP=`eval "echo $CPP"` | 1161 | CPP=`eval "echo $CPP"` |
| 1162 | eval `${CPP} -Isrc ${tempcname} \ | 1162 | eval `${CPP} -Isrc ${tempcname} \ |
| 1163 | | grep '@configure@' \ | 1163 | | grep 'configure___' \ |
| 1164 | | sed -e 's/^@configure@ \([^=]*=\)\(.*\)$/\1"\2"/'` | 1164 | | sed -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/'` |
| 1165 | rm ${tempcname} | 1165 | rm ${tempcname} |
| 1166 | 1166 | ||
| 1167 | ### Compute the unexec source name from the object name. | 1167 | ### Compute the unexec source name from the object name. |