[Pkg-erlang-commits] r1964 - erlang/trunk/debian

sgolovan at alioth.debian.org sgolovan at alioth.debian.org
Fri Nov 3 06:08:23 UTC 2017


Author: sgolovan
Date: 2017-11-03 06:08:23 +0000 (Fri, 03 Nov 2017)
New Revision: 1964

Modified:
   erlang/trunk/debian/changelog
   erlang/trunk/debian/rules
Log:
[erlang]
  * Fix assignment of predefined dpkg-architecture variables.


Modified: erlang/trunk/debian/changelog
===================================================================
--- erlang/trunk/debian/changelog	2017-11-03 05:37:11 UTC (rev 1963)
+++ erlang/trunk/debian/changelog	2017-11-03 06:08:23 UTC (rev 1964)
@@ -1,8 +1,9 @@
 erlang (1:20.1.4+dfsg-1) unstable; urgency=medium
 
   * New upstream bugfix release.
+  * Fix assignment of predefined dpkg-architecture variables.
 
- -- Sergei Golovan <sgolovan at debian.org>  Thu, 02 Nov 2017 23:14:04 +0300
+ -- Sergei Golovan <sgolovan at debian.org>  Fri, 03 Nov 2017 08:48:33 +0300
 
 erlang (1:20.1.3+dfsg-1) unstable; urgency=medium
 

Modified: erlang/trunk/debian/rules
===================================================================
--- erlang/trunk/debian/rules	2017-11-03 05:37:11 UTC (rev 1963)
+++ erlang/trunk/debian/rules	2017-11-03 06:08:23 UTC (rev 1964)
@@ -1,9 +1,9 @@
 #!/usr/bin/make -f
 
 #export DH_VERBOSE=1
-DEB_HOST_ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH)
-DEB_HOST_GNU_TYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
-DEB_BUILD_GNU_TYPE := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
+DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
 ROOT_DIR=$(shell pwd)
 MAN_DIR = $(ROOT_DIR)/debian/erlang-docs/usr/lib/erlang/man




More information about the Pkg-erlang-commits mailing list