diff options
author | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2012-05-19 09:10:11 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2012-05-19 09:10:11 +0000 |
commit | 4943cae3c4096de42516f658d14020e353c30fe1 (patch) | |
tree | f47abfb973584109b13df88b2ee47a837dc52f70 | |
parent | Fix CPPFLAGS hardening flags missing (closes: #665491) (diff) | |
download | w3m-4943cae3c4096de42516f658d14020e353c30fe1.tar.gz w3m-4943cae3c4096de42516f658d14020e353c30fe1.zip |
Accept linux-gnueabi for w3m-img (closes: #673123)
Use DEB_BUILD_ARCH_OS instead of DEB_BUILD_GNU_SYSTEM to detect Linux,
suggested by Trent W. Buck at <http://bugs.debian.org/673123>.
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index b70cfe9..47dc045 100755 --- a/debian/rules +++ b/debian/rules @@ -8,7 +8,7 @@ CFLAGS=$(shell $(dpkg_buildflags) --get CFLAGS) CPPFLAGS=$(shell $(dpkg_buildflags) --get CPPFLAGS) LDFLAGS=$(shell $(dpkg_buildflags) --get LDFLAGS) -ifeq ($(DEB_BUILD_GNU_SYSTEM),linux-gnu) +ifeq ($(DEB_BUILD_ARCH_OS),linux) DEVS=x11,fb+s else DEVS=x11 |