From 4af8d1671c88a109d53e3d18f6b91a4b8317db52 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 14 Jun 2022 19:24:38 -0400 Subject: [PATCH] configure (in Citadel Server) - don't accept "--prefix" anymore. This option might confuse some people into thinking they're going to get ${prefix}/[bin|etc|var] but we don't do that. Now we only accept "--ctdldir" to reflect our own directory hierarchy. Easy Install has been modified to use --ctdldir as well. --- citadel/configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/citadel/configure b/citadel/configure index 5dd65846a..2edeab990 100755 --- a/citadel/configure +++ b/citadel/configure @@ -27,7 +27,8 @@ do case $k in --prefix) - PREFIX=$v + echo $0 : '--prefix is not supported. you are probably looking for --ctdldir' + exit 1 ;; --ctdldir) CTDLDIR=$v -- 2.39.2