@@ -84,8 +84,8 @@ Modes of operation (provide at most one):
84
84
-x, --check-only: exclusively run the test suite;
85
85
this may assume that:
86
86
* 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
89
89
build directory only
90
90
--info: print information on the package only
91
91
--help: print this help only
@@ -103,7 +103,7 @@ Other options:
103
103
exit with an error on test suite failures
104
104
-w: after installing, run the test suite for the package;
105
105
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,
107
107
even when the installation was successful
108
108
EOF
109
109
}
@@ -870,7 +870,7 @@ __EOF__
870
870
} # ##################################### write_installation_record
871
871
872
872
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 "
874
874
# On Solaris, the current working directory cannot be deleted,
875
875
# so we "cd" out of $SAGE_BUILD_DIR/$PKG_NAME. See #12637.
876
876
cd " $SAGE_BUILD_DIR "
@@ -881,7 +881,7 @@ delete_the_temporary_build_directory_if_required() { #############
881
881
if [ ! -e " $SAGE_BUILD_DIR /$PKG_NAME /.keep" ]; then
882
882
delete_the_temporary_build_directory
883
883
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 "
885
885
fi
886
886
} # ############## delete_the_temporary_build_directory_if_required
887
887
0 commit comments