From: niklas Date: Thu, 1 Feb 1996 23:57:12 +0000 (+0000) Subject: $(KRB4) -> \$KRB4 so our /bin/sh won't spit out an error message while X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=699cf07f61c5192a34da166618662e3dd8799b02;p=openbsd $(KRB4) -> \$KRB4 so our /bin/sh won't spit out an error message while configuring. --- diff --git a/gnu/usr.bin/cvs/configure b/gnu/usr.bin/cvs/configure index b5761b186d0..fdaa36c7a4e 100644 --- a/gnu/usr.bin/cvs/configure +++ b/gnu/usr.bin/cvs/configure @@ -12,7 +12,7 @@ ac_help= ac_default_prefix=/usr/local # Any additions from configure.in: ac_help="$ac_help - --with-krb4=value set default $(KRB4) from value" + --with-krb4=value set default \$KRB4 from value" # Initialize some variables set by options. # The variables have the same names as the options, with diff --git a/gnu/usr.bin/cvs/configure.in b/gnu/usr.bin/cvs/configure.in index b44a6d9ecb1..32eb799273a 100644 --- a/gnu/usr.bin/cvs/configure.in +++ b/gnu/usr.bin/cvs/configure.in @@ -76,12 +76,12 @@ fi AC_MSG_RESULT($ccvs_cv_sys_working_fnmatch) dnl -dnl set $(KRB4) from --with-krb4=value -- WITH_KRB4 +dnl set $KRB4 from --with-krb4=value -- WITH_KRB4 dnl KRB4=/usr/kerberos define(WITH_KRB4,[ AC_ARG_WITH([krb4], - [ --with-krb4=value set default $(KRB4) from value], + [ --with-krb4=value set default \$KRB4 from value], [KRB4=$withval], )dnl echo "default place for krb4 is $KRB4"