Correct usage of dpkg-architecture to fix errors. Closes: 703487
This commit is contained in:
parent
b7ea5d5530
commit
2ab852fe07
4
CONF.sh
4
CONF.sh
|
@ -85,11 +85,11 @@ export OFFICIAL="Unofficial"
|
|||
|
||||
# ... for arch
|
||||
if [ -z "$ARCHES" ]; then
|
||||
CPU=`dpkg-architecture -qDEB_HOST_DPKG_CPU 2>/dev/null || true`
|
||||
CPU=`dpkg-architecture -qDEB_HOST_ARCH_CPU 2>/dev/null || true`
|
||||
if [ -z "$CPU" ]; then
|
||||
CPU=`dpkg-architecture -qDEB_HOST_ARCH`
|
||||
fi
|
||||
KERNEL=`dpkg-architecture -qDEB_HOST_DPKG_OS 2>/dev/null || true`
|
||||
KERNEL=`dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null || true`
|
||||
if [ -z "$KERNEL" ]; then
|
||||
KERNEL=linux
|
||||
fi
|
||||
|
|
|
@ -53,6 +53,7 @@ debian-cd (3.1.12) UNRELEASED; urgency=low
|
|||
* Extract debian-archive-keyring when setting up apt to avoid error
|
||||
messages about missing keys. Closes: #703431
|
||||
* Fix cpp warning in Makefile. Closes: #704342
|
||||
* Correct usage of dpkg-architecture to fix errors. Closes: 703487
|
||||
|
||||
-- Steve McIntyre <93sam@debian.org> Wed, 26 Sep 2012 01:09:13 +0100
|
||||
|
||||
|
|
Loading…
Reference in New Issue