diff options
| author | Richard M. Stallman | 1996-07-31 17:54:15 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-07-31 17:54:15 +0000 |
| commit | 1e60bcf825bb4448e2c772585d339d6923d5bd8b (patch) | |
| tree | 70aafc40c18aa6694216ed843c90fe5ae8446204 | |
| parent | 30e671c33ffdb89b8b2450a7be95c2a5c454cdb3 (diff) | |
| download | emacs-1e60bcf825bb4448e2c772585d339d6923d5bd8b.tar.gz emacs-1e60bcf825bb4448e2c772585d339d6923d5bd8b.zip | |
(*-sco3.2v5*):
Set OVERRIDE_CPPFLAG to a string of one space.
Fix the code that uses OVERRIDE_CPPFLAG.
| -rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 47df36c664c..2971b9adb74 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -850,7 +850,7 @@ case "${canonical}" in | |||
| 850 | NON_GNU_CPP=/lib/cpp | 850 | NON_GNU_CPP=/lib/cpp |
| 851 | # Prevent -belf from being passed to $CPP. | 851 | # Prevent -belf from being passed to $CPP. |
| 852 | # /lib/cpp does not accept it. | 852 | # /lib/cpp does not accept it. |
| 853 | OVERRIDE_CPPFLAGS= | 853 | OVERRIDE_CPPFLAGS=" " |
| 854 | ;; | 854 | ;; |
| 855 | *-bsd386* | *-bsdi1* ) opsys=bsd386 ;; | 855 | *-bsd386* | *-bsdi1* ) opsys=bsd386 ;; |
| 856 | *-bsdi2.0* ) opsys=bsdos2 ;; | 856 | *-bsdi2.0* ) opsys=bsdos2 ;; |
| @@ -1245,7 +1245,7 @@ LISP_FLOAT_TYPE=yes | |||
| 1245 | #### Add the libraries to LIBS and check for some functions. | 1245 | #### Add the libraries to LIBS and check for some functions. |
| 1246 | 1246 | ||
| 1247 | if test x"${OVERRIDE_CPPFLAGS}" != x; then | 1247 | if test x"${OVERRIDE_CPPFLAGS}" != x; then |
| 1248 | CPPFLAGS="$(OVERRIDE_CPPFLAGS)" | 1248 | CPPFLAGS="${OVERRIDE_CPPFLAGS}" |
| 1249 | else | 1249 | else |
| 1250 | CPPFLAGS="$c_switch_system $c_switch_machine $CPPFLAGS" | 1250 | CPPFLAGS="$c_switch_system $c_switch_machine $CPPFLAGS" |
| 1251 | fi | 1251 | fi |