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

Commit 3abffd8

Browse files
author
Matthias Koeppe
committed
New target: sdistcheck-compare-trees
1 parent 8ce279c commit 3abffd8

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/Makefile.in

+13
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,17 @@ sdistcheck-build:
7979
SAGE_CYTHONIZED=`pwd`/build/cythonized \
8080
&& python -u setup.py install
8181

82+
TREECMD=find . -name "*.pyc" -prune \
83+
-o -name "*~" -prune \
84+
-o -name "*\#" -prune \
85+
-o -name build -prune \
86+
-o -name doc -prune \
87+
-o -name sage-\* -prune \
88+
-o -name mac-app -prune \
89+
-o -print
90+
sdistcheck-compare-trees:
91+
$(TREECMD) > srctree.list
92+
(cd sage-$(PACKAGE_VERSION) && $(TREECMD) > srctree.list)
93+
diff -u srctree.list sage-$(PACKAGE_VERSION)/srctree.list
94+
8295
sdistcheck: sdist sdistcheck-unpack sdistcheck-build

0 commit comments

Comments
 (0)