diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ 2007-12-25 Bjørn Lindeijer <bjorn@lindeijer.nl> * data/help/header.txt: Fixed year. :) + * debian/rules: Fixed missing backslash. 2007-12-24 David Athay <ko2fan@gmail.com> diff --git a/debian/rules b/debian/rules index 71a35e81..614ee701 100755 --- a/debian/rules +++ b/debian/rules @@ -12,7 +12,7 @@ DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) config.status: patch dh_testdir - CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) + CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) \ --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr \ --datadir=/usr/share/games --bindir=/usr/games --mandir=/usr/share/man |