Mercurial > mplayer.hg
comparison debian/rules @ 32402:32eb0475a2d2
make clean target more robust (i.e. don't fail when config.mak isn't there)
author | siretart |
---|---|
date | Thu, 14 Oct 2010 08:36:31 +0000 |
parents | 4b6dc3f9b281 |
children | 0b221d9da48e |
comparison
equal
deleted
inserted
replaced
32401:69fb7b91bf76 | 32402:32eb0475a2d2 |
---|---|
150 ################ clean | 150 ################ clean |
151 | 151 |
152 clean: | 152 clean: |
153 dh_testdir | 153 dh_testdir |
154 dh_testroot | 154 dh_testroot |
155 [ ! -f config.mak ] || $(MAKE) -C DOCS/xml releaseclean && $(MAKE) distclean | 155 test ! -f config.mak || ( $(MAKE) -C DOCS/xml releaseclean ; $(MAKE) distclean ) |
156 dh_clean snapshot_version | 156 dh_clean snapshot_version |
157 | 157 |
158 # Build architecture-independent packages | 158 # Build architecture-independent packages |
159 binary-indep: install-indep | 159 binary-indep: install-indep |
160 | 160 |