[I'm not the maintainer, just a random bug onlooker.]

Hi Juan!

* Juan Picca <[email protected]>, 2015-05-25, 22:33:
+BUILD_DATE = $(shell LANG=en_US; date)

There are multiple problems with this command line:
- If LANG is wasn't exported in the environment, then setting it won't have any effect on the date command.
- Not everyone has the en_US locale installed.
- Setting LANG is not the proper way to reset environment, because LANG can be overridden by various LC_* variables.

All in all, this line should read:

BUILD_DATE = $(shell LC_ALL=C date)

--
Jakub Wilk


--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive: https://lists.debian.org/[email protected]

Reply via email to