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 | 3a7763570dd8ab5257b172b51ff83926a8dd8a1d (patch) | |
tree | 6af5ec9ee2eb28db54445fae28c12892dc25f6c2 /os/debian | |
parent | 99467ff2923b0f3bbe35fac694886488987bf4c7 (diff) | |
download | openttd-3a7763570dd8ab5257b172b51ff83926a8dd8a1d.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/debian')
-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 |