8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef5dd87 commit e9bac89Copy full SHA for e9bac89
Makefile
@@ -63,8 +63,14 @@ srcdist: distclean
63
64
if [ -f README.in ]; then \
65
cp README.in build/$(SRC_ARCHIVE)/README; \
66
- elinks -dump -no-references -no-numbering $(WEB_URL)build-java-client.html \
67
- >> build/$(SRC_ARCHIVE)/README; \
+ if [ -f build-java-client.txt ]; then \
+ cat build-java-client.txt \
68
+ >> build/$(SRC_ARCHIVE)/README; \
69
+ else \
70
+ elinks -dump -no-references -no-numbering \
71
+ $(WEB_URL)build-java-client.html \
72
73
+ fi; \
74
fi
75
(cd build; tar -zcf $(SRC_ARCHIVE).tar.gz $(SRC_ARCHIVE))
76
(cd build; zip -q -r $(SRC_ARCHIVE).zip $(SRC_ARCHIVE))
0 commit comments