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

Commit 74169e7

Browse files
author
Matthias Koeppe
committed
Pass SAGE_SRC to generate_py_source.mk
1 parent 7791cd9 commit 74169e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def excepthook(*exc):
100100
#########################################################
101101

102102
make = os.environ.get("MAKE", 'make')
103-
make_cmdline = make + " -f generate_py_source.mk"
103+
make_cmdline = "{} -f generate_py_source.mk SAGE_SRC={}".format(make, sage.env.SAGE_SRC)
104104
status = subprocess.call(make_cmdline, shell=True)
105105
if status != 0:
106106
raise DistutilsSetupError("{} failed".format(make_cmdline))

0 commit comments

Comments
 (0)