From: Thibault Godouet Date: Wed, 14 Feb 2001 13:49:48 +0000 (+0000) Subject: bug corrected : --prefix used not to work X-Git-Tag: ver2_9_4~405 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e457b7b7b3491d0bfdf4d06b611da27b1c820577;p=thirdparty%2Ffcron.git bug corrected : --prefix used not to work --- diff --git a/configure.in b/configure.in index 97608e7..0895a95 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,9 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(allow.c) -prefix="/usr" +if test \( "$prefix" = "NONE" \) -o \( -z "$prefix" \); then + prefix="/usr/" +fi AC_PREFIX_DEFAULT($prefix) AC_CONFIG_HEADER(config.h) AC_PREREQ(2.7)