diff options
author | Dave Love <fx@gnu.org> | 2000-11-20 19:02:44 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-11-20 19:02:44 +0000 |
commit | 05b73ae7c747760f9e25f354e4f36539e47de18a (patch) | |
tree | 8ff609000435ba36e06e4e8c296ec17ac74329b8 /configure.in | |
parent | 62d14e9a1ca61564cc72cc2965223526c41e968f (diff) | |
download | emacs-05b73ae7c747760f9e25f354e4f36539e47de18a.tar.gz |
Fix last change.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 341711dc648..54ea7a70fa0 100644 --- a/configure.in +++ b/configure.in @@ -2260,7 +2260,7 @@ make epaths-force # As of 2000-11-19, newest development versions of GNU cpp preprocess # `..' to `. .' unless invoked with -traditional -if [ x$GCC = xyes && x$NON_GNU_CPP" = x ]; then +if test "x$GCC" = xyes && test "x$NON_GNU_CPP" = x; then CPPFLAGS="$CPPFLAGS -traditional" fi |