diff options
| author | Bdale Garbee <bdale@gag.com> | 2009-08-17 23:31:20 -0600 |
|---|---|---|
| committer | Bdale Garbee <bdale@gag.com> | 2009-08-17 23:31:20 -0600 |
| commit | 5f59df632f3a82348aefc2b16f2521f6ebd30a50 (patch) | |
| tree | 65162270ebbf73c16ffb694e855f18e2620ef759 | |
| parent | 946f2be3f4fdd0e7cf5c9867ff6fa0d348d95ee1 (diff) | |
don't fail to clean if Makefile not present
| -rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 785d9d5b..b81278a1 100755 --- a/debian/rules +++ b/debian/rules @@ -20,7 +20,7 @@ clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp - $(MAKE) distclean + [ ! -f Makefile ] || $(MAKE) distclean dh_clean install: build |
