diff mbox series

[v2,3/5,linux-signed,Unstable,Eoan] UBUNTU: Don't see LC_ALL=C when calling dpkg-parsechangelog

Message ID 20190604225625.15658-4-dann.frazier@canonical.com
State New
Headers show
Series None | expand

Commit Message

dann frazier June 4, 2019, 10:56 p.m. UTC
It has no impact on the output of these commands.

Signed-off-by: dann frazier <dann.frazier@canonical.com>
---
 debian/rules | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/debian/rules b/debian/rules
index 22cec29..c6d8419 100755
--- a/debian/rules
+++ b/debian/rules
@@ -7,8 +7,8 @@  DEB_HOST_ARCH = $(shell dpkg-architecture -qDEB_HOST_ARCH)
 # Work out the source package name and version.  We assume the source package
 # is the name of this package with -signed stripped.  The version is identical
 # to this package less any rebuild suffic (+signedN).
-src_package := $(shell LC_ALL=C dpkg-parsechangelog -S Source | sed -e 's/-signed//')
-src_fullversion = $(shell LC_ALL=C dpkg-parsechangelog -S Version)
+src_package := $(shell dpkg-parsechangelog -S Source | sed -e 's/-signed//')
+src_fullversion = $(shell dpkg-parsechangelog -S Version)
 src_version = $(shell echo $(src_fullversion) | sed -e 's/+signed[0-9]*.*//')
 src_abi = $(shell echo "$(src_version)" | sed -ne 's/\([0-9]*\.[0-9]*\.[0-9]*\-[0-9]*\)\..*/\1/p')