Kurt D. Starsinic [Fri, 2 Apr 1999 16:49:47 +0000 (11:49 -0500)]
To: perl5-porters@perl.org
Subject: linux hints nit
Message-ID: <
19990402164947.E80926@O2.chapin.edu>
p4raw-id: //depot/cfgperl@3204
# available via anonymous FTP at tsx-11.mit.edu in
# /pub/linux/docs/linux-standards/fsstnd.
# Allow a command line override, e.g. Configure -Dprefix=/foo/bar
+# Also, if the user has specified -Uinstallusrbinperl and hasn't
+# specified a prefix, then set prefix to /usr/local.
case "$prefix" in
-'') prefix='/usr' ;;
+'')
+ case "$installusrbinperl" in
+ "$undef")
+ prefix='/usr/local' ;;
+ esac
+*)
+ prefix='/usr' ;;
esac
# gcc-2.6.3 defines _G_HAVE_BOOL to 1, but doesn't actually supply bool.