Skip to content

Commit 878fa8b

Browse files
author
Matthias Koeppe
committed
build/bin/sage-spkg: Just say 'build directory', not 'temporary build directory'
1 parent 72f9f9e commit 878fa8b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

build/bin/sage-spkg

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ Modes of operation (provide at most one):
8484
-x, --check-only: exclusively run the test suite;
8585
this may assume that:
8686
* the package has been installed already and/or that
87-
* the temporary build directory has not been deleted
88-
-e, --erase-build-directory-only: erase (delete) the temporary
87+
* the build directory has not been deleted
88+
-e, --erase-build-directory-only: erase (delete) the
8989
build directory only
9090
--info: print information on the package only
9191
--help: print this help only
@@ -103,7 +103,7 @@ Other options:
103103
exit with an error on test suite failures
104104
-w: after installing, run the test suite for the package;
105105
print a warning on test suite failures
106-
-s: save (do not delete) the temporary build directory,
106+
-s: save (do not delete) the build directory,
107107
even when the installation was successful
108108
EOF
109109
}
@@ -870,7 +870,7 @@ __EOF__
870870
} ###################################### write_installation_record
871871

872872
delete_the_temporary_build_directory() { #########################
873-
echo "Deleting temporary build directory $SAGE_BUILD_DIR/$PKG_NAME"
873+
echo "Deleting build directory $SAGE_BUILD_DIR/$PKG_NAME"
874874
# On Solaris, the current working directory cannot be deleted,
875875
# so we "cd" out of $SAGE_BUILD_DIR/$PKG_NAME. See #12637.
876876
cd "$SAGE_BUILD_DIR"
@@ -881,7 +881,7 @@ delete_the_temporary_build_directory_if_required() { #############
881881
if [ ! -e "$SAGE_BUILD_DIR/$PKG_NAME/.keep" ]; then
882882
delete_the_temporary_build_directory
883883
else
884-
echo "You can safely delete the temporary build directory $SAGE_BUILD_DIR/$PKG_NAME"
884+
echo "You can safely delete the build directory $SAGE_BUILD_DIR/$PKG_NAME"
885885
fi
886886
} ############### delete_the_temporary_build_directory_if_required
887887

src/doc/en/developer/packaging.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ giving the command::
1919
options can be:
2020

2121
- -f: install a package even if the same version is already installed
22-
- -s: do not delete temporary build directory
22+
- -s: do not delete build directory
2323
- -c: after installing, run the test suite for the spkg. This should
2424
override the settings of ``SAGE_CHECK`` and ``SAGE_CHECK_PACKAGES``.
2525
- -d: only download the package

0 commit comments

Comments
 (0)