From: Harald Hoyer Date: Thu, 19 Jul 2012 11:34:51 +0000 (+0200) Subject: Makefile: set LC_MESSAGES=C ... not LANG X-Git-Tag: 021~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c243105e6b97ff7d55dd6696c86696b64fed4047;p=thirdparty%2Fdracut.git Makefile: set LC_MESSAGES=C ... not LANG --- diff --git a/Makefile b/Makefile index e20ba06e6..58124115d 100644 --- a/Makefile +++ b/Makefile @@ -119,7 +119,7 @@ dracut-$(VERSION).tar.bz2: doc rpm: dracut-$(VERSION).tar.bz2 rpmbuild=$$(mktemp -d -t rpmbuild-dracut.XXXXXX); src=$$(pwd); \ cp dracut-$(VERSION).tar.bz2 "$$rpmbuild"; \ - LANG=C $$src/git2spec.pl $(VERSION) "$$rpmbuild" < dracut.spec > $$rpmbuild/dracut.spec; \ + LC_MESSAGES=C $$src/git2spec.pl $(VERSION) "$$rpmbuild" < dracut.spec > $$rpmbuild/dracut.spec; \ (cd "$$rpmbuild"; rpmbuild --define "_topdir $$PWD" --define "_sourcedir $$PWD" \ --define "_specdir $$PWD" --define "_srcrpmdir $$PWD" \ --define "_rpmdir $$PWD" -ba dracut.spec; ) && \