diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-12-25 14:26:22 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-12-25 14:26:22 +0000 |
commit | 0dd5f36cf3eacf5ab69c533e611c56a3edcbc1af (patch) | |
tree | cae9233d11e0b4207027db03dea66416cbe91245 /debian | |
parent | 803ee050e73e0959b706a2386c98ddaeb03e200f (diff) | |
download | mana-0dd5f36cf3eacf5ab69c533e611c56a3edcbc1af.tar.gz mana-0dd5f36cf3eacf5ab69c533e611c56a3edcbc1af.tar.bz2 mana-0dd5f36cf3eacf5ab69c533e611c56a3edcbc1af.tar.xz mana-0dd5f36cf3eacf5ab69c533e611c56a3edcbc1af.zip |
Fixed missing backslash.
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
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 |