r1012 - in /unstable/vlc/debian: changelog rules

lool at users.alioth.debian.org lool at users.alioth.debian.org
Fri Jan 11 17:09:12 UTC 2008


Author: lool
Date: Fri Jan 11 17:09:12 2008
New Revision: 1012

URL: http://svn.debian.org/wsvn/pkg-multimedia/?sc=1&rev=1012
Log:
* Only pass --host to configure if DEB_BUILD_GNU_TYPE and DEB_HOST_GNU_TYPE
  differ.

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=1012&op=diff
==============================================================================
--- unstable/vlc/debian/changelog (original)
+++ unstable/vlc/debian/changelog Fri Jan 11 17:09:12 2008
@@ -20,6 +20,8 @@
   * Also build vlc-plugin-svgalib package on amd64 as well; build-dep on
     libsvga1-dev on amd64 too; --enable-svgalib on amd64.
   * Drop debian/*.dirs.
+  * Only pass --host to configure if DEB_BUILD_GNU_TYPE and DEB_HOST_GNU_TYPE
+    differ.
 
  -- Loic Minier <lool at dooz.org>  Fri, 11 Jan 2008 17:32:36 +0100
 

Modified: unstable/vlc/debian/rules
URL: http://svn.debian.org/wsvn/pkg-multimedia/unstable/vlc/debian/rules?rev=1012&op=diff
==============================================================================
--- unstable/vlc/debian/rules (original)
+++ unstable/vlc/debian/rules Fri Jan 11 17:09:12 2008
@@ -13,7 +13,11 @@
 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 DEB_HOST_ARCH_OS    ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
 
-confflags = --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) 
+ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
+confflags = --build=$(DEB_BUILD_GNU_TYPE)
+else
+confflags = --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE)
+endif
 
 #
 # Compilation options




More information about the pkg-multimedia-commits mailing list