diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2024-05-07 10:34:00 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2024-05-07 10:34:00 +0200 |
commit | 3540e5c94f0b2237ebc9379d068d058dfd8a0f80 (patch) | |
tree | a6b2dad33e85317217006f3ab43cbc31b04ba92d | |
parent | dd6448e10bd8ef241efcdc28718f0b5fb14767a8 (diff) |
Don't enable private installation by default in build2.sh.in
-rw-r--r-- | build.sh.in | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/build.sh.in b/build.sh.in index f3e5aa5..8243098 100644 --- a/build.sh.in +++ b/build.sh.in @@ -93,10 +93,10 @@ while test $# -ne 0; do diag " --make <arg> Bootstrap using GNU make instead of script." diag " --verbose <level> Diagnostics verbosity level between 0 and 6." diag - diag "By default the script will install into /usr/local with private" - diag "library subdirectories and using sudo(1). To enable private" - diag "subdirectories and/or use sudo for a custom installation location," - diag "you need to specify --private and/or --sudo explicitly, for example:" + diag "By default the script will install into /usr/local using sudo(1). To" + diag "enable private library subdirectories and/or use sudo for a custom" + diag "installation location, you need to specify --private and/or --sudo" + diag "explicitly, for example:" diag diag "$0 --install-dir /opt/build2 --sudo sudo g++" diag @@ -436,7 +436,6 @@ done # if test -z "$idir"; then idir=/usr/local - private=config.install.private=build2 # Only use default sudo for the default installation directory and only if # it wasn't specified by the user. |