Skip to content
This repository was archived by the owner on Feb 1, 2023. It is now read-only.

Commit 340fbb7

Browse files
author
Matthias Koeppe
committed
bootstrap: Emit SAGE_SPKG_ENABLE calls for standard packages
1 parent af2e1fb commit 340fbb7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

bootstrap

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,11 @@ install_config_rpath() {
8080
bootstrap () {
8181
rm -f m4/sage_spkg_configures.m4
8282
spkg_configures=""
83-
for pkgname in $(./sage --package list :optional: :experimental: | sort); do
83+
84+
# --disable-SPKG options for standard packages, followed by
85+
# --enable-SPKG options
86+
for pkgname in $(./sage --package list :standard: | sort) \
87+
$(./sage --package list :optional: :experimental: | sort); do
8488
# Trac #29629: Temporary solution for Sage 9.1: Do not provide
8589
# --enable-SPKG options for installing pip packages
8690
if [ ! -f build/pkgs/$pkgname/requirements.txt ]; then

0 commit comments

Comments
 (0)