diff options
author | Eugene V. Lyubimkin <jackyf@1501-debian> | 2008-10-29 22:04:30 +0200 |
---|---|---|
committer | Eugene V. Lyubimkin <jackyf@1501-debian> | 2008-10-29 22:04:30 +0200 |
commit | f7e51977e235f67cdcf8d3c83d11fe9df2ea3e43 (patch) | |
tree | 6bafcb81ac31f3c7dd1ce7858ee2a89c0a9db024 /debian/rules | |
parent | 94cb04ddd1f9221e16680dceb98afad6a1273c50 (diff) |
Fixed 'debian/rules ignores make errors' lintian warnings.
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index 006d2de8a..3b9a115d7 100755 --- a/debian/rules +++ b/debian/rules @@ -125,8 +125,8 @@ build/build-doc-stamp: build/configure-stamp clean: dh_testdir # dh_testroot - -$(MAKE) clean - -$(MAKE) distclean + [ -f Makefile ] && $(MAKE) clean + [ -f Makefile ] && $(MAKE) distclean rm -rf build |