mirror of https://github.com/kivy/kivy.git
Don't remove debian subdirectory if it exists on git cleanup.
This doesn't harm if you don't build a Debian package as `git cleanup` will work just fine if the `debian` directory does not exist. Without this patch the `distclean` rule will also remove the `debian` directory which make it impossible to correctly build a debian package.
This commit is contained in:
parent
e1ecd0074f
commit
8b93f0362a
2
Makefile
2
Makefile
|
@ -81,7 +81,7 @@ clean:
|
||||||
-find . -iname '*.pyx' -exec sh -c 'echo `dirname {}`/`basename {} .pyx`.c' \; | xargs rm
|
-find . -iname '*.pyx' -exec sh -c 'echo `dirname {}`/`basename {} .pyx`.c' \; | xargs rm
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
-git clean -dxf
|
-git clean -dxf -e debian
|
||||||
|
|
||||||
theming:
|
theming:
|
||||||
$(PYTHON) -m kivy.atlas kivy/data/images/defaulttheme 512 kivy/tools/theming/defaulttheme/*.png
|
$(PYTHON) -m kivy.atlas kivy/data/images/defaulttheme 512 kivy/tools/theming/defaulttheme/*.png
|
||||||
|
|
Loading…
Reference in New Issue