]> The Tcpdump Group git mirrors - tcpdump/commitdiff
From Maciej W. Rozycki <[email protected]>:
authorguy <guy>
Sun, 7 Apr 2002 02:12:01 +0000 (02:12 +0000)
committerguy <guy>
Sun, 7 Apr 2002 02:12:01 +0000 (02:12 +0000)
Due to missing quotes a shell complains about the "while"
command missing ("bash: while: command not found").

configure
configure.in

index 59cf4e0cb3a7f7ee978d1e339ec7b0b4118160d7..dc3bcb1c5b756227c432794e6e502be09538164f 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 
-# From configure.in Revision: 1.147 
+# From configure.in Revision: 1.148 
 
 
 
@@ -2956,7 +2956,7 @@ if eval "test \"`echo '$''{'ac_cv_buggy_ether_ntohost'+set}'`\" = set"; then
 else
   
        if test "$cross_compiling" = yes; then
-  ac_cv_buggy_ether_ntohost=not while cross-compiling
+  ac_cv_buggy_ether_ntohost="not while cross-compiling"
 else
   cat > conftest.$ac_ext <<EOF
 #line 2963 "configure"
index c8a3a6196c50bd98111d63b355370d5cceb68c65..69ff8d6402b937864494d33062e47c5068285fd2 100644 (file)
@@ -1,4 +1,4 @@
-dnl @(#) $Header: /tcpdump/master/tcpdump/configure.in,v 1.147 2002-04-07 02:09:04 guy Exp $ (LBL)
+dnl @(#) $Header: /tcpdump/master/tcpdump/configure.in,v 1.148 2002-04-07 02:12:01 guy Exp $ (LBL)
 dnl
 dnl Copyright (c) 1994, 1995, 1996, 1997
 dnl    The Regents of the University of California.  All rights reserved.
@@ -6,7 +6,7 @@ dnl
 dnl Process this file with autoconf to produce a configure script.
 dnl
 
-AC_REVISION($Revision: 1.147 $)
+AC_REVISION($Revision: 1.148 $)
 AC_PREREQ(2.13)
 AC_INIT(tcpdump.c)
 
@@ -508,7 +508,7 @@ AC_CHECK_FUNCS(ether_ntohost, [
                }
        ], [ac_cv_buggy_ether_ntohost=no],
           [ac_cv_buggy_ether_ntohost=yes],
-          [ac_cv_buggy_ether_ntohost=not while cross-compiling])])
+          [ac_cv_buggy_ether_ntohost="not while cross-compiling"])])
     if test "$ac_cv_buggy_ether_ntohost" = "no"; then
        AC_DEFINE(USE_ETHER_NTOHOST)
     fi