Remove the translations directory when 'distclean' is used...
...instead of when 'clean'. Previous a 'clean' in the topdir disabled the translations when run without installation. Somebody who knows more about the autotools magic might want to review this commit.
This commit is contained in:
parent
84e3a9b415
commit
f7e38c7155
1 changed files with 4 additions and 1 deletions
|
@ -149,7 +149,10 @@ uninstall-hook:
|
|||
if test -d $(docdir) ; then echo `rmdir $(docdir)` ; fi
|
||||
|
||||
clean-local:
|
||||
rm -rf translations po/stamp* po/*/stamp*
|
||||
rm -rf po/stamp* po/*/stamp*
|
||||
|
||||
distclean-local:
|
||||
rm -rf translations
|
||||
|
||||
BINARY_STAGING=/tmp/$(PACKAGE)-$(VERSION)-staging
|
||||
BINARY_DIST=/tmp/$(PACKAGE)-binary-$(VERSION).tar.gz
|
||||
|
|
Loading…
Add table
Reference in a new issue