configure (in Citadel Server) - don't accept "--prefix" anymore.
authorArt Cancro <ajc@citadel.org>
Tue, 14 Jun 2022 23:24:38 +0000 (19:24 -0400)
committerArt Cancro <ajc@citadel.org>
Tue, 14 Jun 2022 23:24:38 +0000 (19:24 -0400)
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

index 5dd65846a1b672626bc62767891ee15a1e8c9017..2edeab990767cffd599c859ea6ca81ca6fffa9c7 100755 (executable)
@@ -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