]> git.ipfire.org Git - thirdparty/fcron.git/commitdiff
bug corrected : --prefix used not to work
authorThibault Godouet <yo8192@users.noreply.github.com>
Wed, 14 Feb 2001 13:49:48 +0000 (13:49 +0000)
committerThibault Godouet <yo8192@users.noreply.github.com>
Wed, 14 Feb 2001 13:49:48 +0000 (13:49 +0000)
configure.in

index 97608e7735b34b4dc491801da86b07a44acb0ba5..0895a9511f0b299b2e87aee09b41d824eb591a87 100644 (file)
@@ -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)