r1351 - in /unstable/vlc/debian: changelog rules
lool at users.alioth.debian.org
lool at users.alioth.debian.org
Fri Aug 22 16:18:49 UTC 2008
Author: lool
Date: Fri Aug 22 16:18:49 2008
New Revision: 1351
URL: http://svn.debian.org/wsvn/pkg-multimedia/?sc=1&rev=1351
Log:
Use DEB_HOST_ARCH instead of DEB_BUILD_ARCH in rules.
Modified:
unstable/vlc/debian/changelog
unstable/vlc/debian/rules
Modified: unstable/vlc/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-multimedia/unstable/vlc/debian/changelog?rev=1351&op=diff
==============================================================================
--- unstable/vlc/debian/changelog (original)
+++ unstable/vlc/debian/changelog Fri Aug 22 16:18:49 2008
@@ -7,6 +7,7 @@
[ Loic Minier ]
* Minor cleanups.
+ * Use DEB_HOST_ARCH instead of DEB_BUILD_ARCH in rules.
-- Christophe Mutricy <xtophe at videolan.org> Thu, 21 Aug 2008 20:19:39 +0100
Modified: unstable/vlc/debian/rules
URL: http://svn.debian.org/wsvn/pkg-multimedia/unstable/vlc/debian/rules?rev=1351&op=diff
==============================================================================
--- unstable/vlc/debian/rules (original)
+++ unstable/vlc/debian/rules Fri Aug 22 16:18:49 2008
@@ -1,8 +1,8 @@
#!/usr/bin/make -f
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
-DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
@@ -83,12 +83,12 @@
endif
# Glide is only for x86 on Linux
-ifeq ($(DEB_BUILD_ARCH),i386)
+ifeq ($(DEB_HOST_ARCH),i386)
confflags += --enable-glide
endif
# svgalib is only for x86 and x86-64 on Linux
-ifneq ($(filter $(DEB_BUILD_ARCH), amd64 i386),)
+ifneq ($(filter $(DEB_HOST_ARCH), amd64 i386),)
confflags += --enable-svgalib
endif
More information about the pkg-multimedia-commits
mailing list