From: Art Cancro Date: Tue, 14 Jun 2022 23:24:38 +0000 (-0400) Subject: configure (in Citadel Server) - don't accept "--prefix" anymore. X-Git-Tag: v957~4 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=4af8d1671c88a109d53e3d18f6b91a4b8317db52;p=citadel.git 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. --- 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