Make configure work with non sh shells Fixes from Jukka Salmi and Lubomir Sedlacik on tech-pkg@
13 lines
439 B
Text
13 lines
439 B
Text
$NetBSD: patch-ag,v 1.1 2006/05/09 18:05:09 adrianp Exp $
|
|
|
|
--- configure.orig 2005-08-31 17:32:23.000000000 +0100
|
|
+++ configure
|
|
@@ -3419,7 +3419,7 @@ else
|
|
curses_found=no
|
|
fi
|
|
|
|
-if test "$curses_found" == no; then
|
|
+if test "$curses_found" = no; then
|
|
echo "$as_me:$LINENO: checking for initscr in -lncurses" >&5
|
|
echo $ECHO_N "checking for initscr in -lncurses... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_ncurses_initscr+set}" = set; then
|