Skip to content

Commit 11bbe95

Browse files
author
Matthias Koeppe
committed
build/make/Makefile.in (pypi-wheels, wheels): Fix cleaning of timestamps
1 parent ca31f0b commit 11bbe95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/make/Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -443,14 +443,14 @@ pypi-sdists: $(PYPI_SDIST_PACKAGES:%=%-sdist)
443443
# just remove the timestamps, which will lead to rebuilds of the packages.
444444
pypi-wheels:
445445
for a in $(PYPI_WHEEL_PACKAGES); do \
446-
rm -f venv/var/lib/sage/installed/$$a-*; \
446+
rm -f $(SAGE_VENV)/var/lib/sage/installed/$$a-*; \
447447
done
448448
$(MAKE_REC) SAGE_EDITABLE=no SAGE_WHEELS=yes $(PYPI_WHEEL_PACKAGES)
449449
@echo "Built wheels are in venv/var/lib/sage/wheels/"
450450

451451
wheels:
452452
for a in $(WHEEL_PACKAGES); do \
453-
rm -f venv/var/lib/sage/installed/$$a-*; \
453+
rm -f $(SAGE_VENV)/var/lib/sage/installed/$$a-*; \
454454
done
455455
$(MAKE_REC) SAGE_EDITABLE=no SAGE_WHEELS=yes $(WHEEL_PACKAGES)
456456
@echo "Built wheels are in venv/var/lib/sage/wheels/"

0 commit comments

Comments
 (0)