diff options
author | Siggi Langauf <siggi@users.sourceforge.net> | 2004-09-26 21:40:46 +0000 |
---|---|---|
committer | Siggi Langauf <siggi@users.sourceforge.net> | 2004-09-26 21:40:46 +0000 |
commit | c4fcac1273c5be824b7468edcda160c38dec1692 (patch) | |
tree | 2def9a792c3b10ba13d653f3a2a917c9d508aa84 /debian/rules | |
parent | c34b0e86dcc5248aae68d612642495bc136fec9c (diff) | |
download | xine-lib-c4fcac1273c5be824b7468edcda160c38dec1692.tar.gz xine-lib-c4fcac1273c5be824b7468edcda160c38dec1692.tar.bz2 |
update of Debian releases
CVS patchset: 7000
CVS date: 2004/09/26 21:40:46
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/debian/rules b/debian/rules index 7fae3ae20..605497d8d 100755 --- a/debian/rules +++ b/debian/rules @@ -28,7 +28,7 @@ ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) BUILD_TARGET := debug endif -DEB_HOST_GNU_OPTION := +DEB_BUILD_GNU_OPTION := # the "optimize" flag disables compatibility hacks ifeq (,$(findstring optimize,$(DEB_BUILD_OPTIONS))) $(warning trying to disable machine-specific optimizations) @@ -42,20 +42,20 @@ ifeq (,$(findstring optimize,$(DEB_BUILD_OPTIONS))) $(shell echo $(DEB_HOST_GNU_TYPE)|sed -e 's/^i.86/i686/') DEB_BUILD_GNU_TYPE := \ $(shell echo $(DEB_BUILD_GNU_TYPE)|sed -e 's/^i.86/i686/') - ifneq ($DEB_HOST_GNU_TYPE,$DEB_BUILD_GNU_TYPE) + ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) $(warning WARNING: cross compiling is not supported by xine) $(warning using DEB_BUILD_GNU_TYPE = $(DEB_BUILD_GNU_TYPE)) $(warning ignoring DEB_HOST_GNU_TYPE = $(DEB_HOST_GNU_TYPE)) DEB_HOST_GNU_TYPE := $(DEB_BUILD_GNU_TYPE) endif - DEB_HOST_GNU_OPTION := --host=$(DEB_HOST_GNU_TYPE) + DEB_BUILD_GNU_OPTION := --build=$(DEB_BUILD_GNU_TYPE) endif configure: configure-stamp configure-stamp: dh_testdir ./configure --prefix=/usr --mandir=\$${prefix}/share/man \ - $(DEB_HOST_GNU_OPTION) + $(DEB_BUILD_GNU_OPTION) CFLAGS="$(CFLAGS)" touch configure-stamp build: configure-stamp build-stamp |