fix #137
This commit is contained in:
parent
a166c162f7
commit
f4f5c9f5d8
5 changed files with 11 additions and 6 deletions
|
@ -9,6 +9,8 @@
|
|||
- fixed some broken tests
|
||||
* BUGFIXES:
|
||||
- #142 - duplication of custom services
|
||||
- #136 - sphinx-apidoc command not found
|
||||
- #137 - make command fails when using distclean
|
||||
|
||||
2017-09-01 CORE 5.0
|
||||
* DEVELOPMENT:
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#
|
||||
|
||||
if WANT_DOCS
|
||||
DOCS = doc daemon/doc
|
||||
DOCS = doc
|
||||
endif
|
||||
if WANT_GUI
|
||||
GUI = gui
|
||||
|
|
|
@ -10,6 +10,10 @@
|
|||
SETUPPY = setup.py
|
||||
SETUPPYFLAGS = -v
|
||||
|
||||
if WANT_DOCS
|
||||
SUBDIRS = doc
|
||||
endif
|
||||
|
||||
SBIN_FILES = \
|
||||
sbin/core-cleanup \
|
||||
sbin/core-daemon \
|
||||
|
@ -121,8 +125,7 @@ rpm:
|
|||
dist-hook:
|
||||
rm -rf `find $(distdir)/ -name .svn` `find $(distdir)/ -name '*.pyc'`
|
||||
|
||||
DISTCLEANFILES = Makefile.in core/*.pyc MANIFEST doc/Makefile.in doc/Makefile \
|
||||
doc/conf.py
|
||||
DISTCLEANFILES = Makefile.in core/*.pyc MANIFEST
|
||||
|
||||
# files to include with distribution tarball
|
||||
EXTRA_DIST = $(SETUPPY) MANIFEST.in core doc $(LOGROTATE_FILE)
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#
|
||||
|
||||
# extra cruft to remove
|
||||
DISTCLEANFILES = conf.py Makefile.in stamp-vti *.rst
|
||||
DISTCLEANFILES = conf.py Makefile Makefile.in stamp-vti *.rst
|
||||
|
||||
all: index.rst
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
# branch name for the sonar analysis
|
||||
sonar.branch=origin/cleanup
|
||||
sonar.branch=origin/master
|
||||
|
||||
# required metadata
|
||||
sonar.projectKey=CORE
|
||||
sonar.projectName=CORE
|
||||
sonar.projectVersion=1.0.0
|
||||
sonar.projectVersion=5.1
|
||||
|
||||
# define modules
|
||||
sonar.modules=PythonLibrary
|
||||
|
|
Loading…
Reference in a new issue