diff options
author | rubidium <rubidium@openttd.org> | 2008-11-30 18:45:44 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-11-30 18:45:44 +0000 |
commit | d3da60f01d2a5e2f627ed558c34eca4ff4fc202b (patch) | |
tree | 6af5ec9ee2eb28db54445fae28c12892dc25f6c2 /os | |
parent | 25ec47e2aca917b7c979be8ee73143cb2af2e9d7 (diff) | |
download | openttd-d3da60f01d2a5e2f627ed558c34eca4ff4fc202b.tar.xz |
(svn r14645) -Fix [FS#2431]: Debian packaging rules could use a non-existing makefile target when rerunning it with dpkg-buildpackage
Diffstat (limited to 'os')
-rwxr-xr-x | os/debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/debian/rules b/os/debian/rules index 1ac6c90ef..6bc9868ab 100755 --- a/os/debian/rules +++ b/os/debian/rules @@ -36,7 +36,7 @@ clean: # We check for Makefile presence, because clean is called at the # start of the build process (before configure) where we don't # have a Makefile yet. - [ ! -f Makefile ] || $(MAKE) distclean + [ ! -f Makefile ] || $(MAKE) mrproper dh_clean |