From: Andrew G. Morgan Date: Tue, 12 Dec 2000 23:44:53 +0000 (+0000) Subject: Relevant BUGIDs: 124930 X-Git-Tag: Linux-PAM-0-74~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bc2dabd9ac9892cb7c1a6a436c6250fafabd7d25;p=linux-pam Relevant BUGIDs: 124930 Purpose of commit: bugfix Commit summary: --------------- upper -> lowercase substitution for OS fixed in configure.in. --- diff --git a/configure b/configure index a4ae0417..dae94eec 100755 --- a/configure +++ b/configure @@ -579,7 +579,7 @@ CC=gcc ; CONF_CFLAGS= ; MKDIR="mkdir -p" ; LOCALSRCDIR=`/bin/pwd` ; -OS=`uname|sed -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXWZ/abcdefghijklmonpqrstuvwxyz/'` +OS=`uname|sed -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` DYNTYPE=so ; diff --git a/configure.in b/configure.in index 5ec46150..996de86d 100644 --- a/configure.in +++ b/configure.in @@ -30,7 +30,7 @@ CC=gcc ; AC_SUBST(CC) CONF_CFLAGS= ; AC_SUBST(CONF_CFLAGS) MKDIR="mkdir -p" ; AC_SUBST(MKDIR) LOCALSRCDIR=`/bin/pwd` ; AC_SUBST(LOCALSRCDIR) -OS=`uname|sed -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXWZ/abcdefghijklmonpqrstuvwxyz/'` +OS=`uname|sed -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` AC_SUBST(OS) dnl These are most likely platform specific - I think HPUX differs