mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Correct broken DEB builds by fixing LC_TIME assignment
Fixes a `make deb` build failure introduced by
c41adc32c2
This commit is contained in:
parent
4a206cdde9
commit
3c1fe28bed
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -58,7 +58,7 @@ DEBUILD_BIN ?= debuild
|
|||
DEBUILD_OPTS = --source-option="-I"
|
||||
DPUT_BIN ?= dput
|
||||
DPUT_OPTS ?=
|
||||
DEB_DATE := $(LC_TIME=C shell date +"%a, %d %b %Y %T %z")
|
||||
DEB_DATE := $(shell LC_TIME=C date +"%a, %d %b %Y %T %z")
|
||||
ifeq ($(OFFICIAL),yes)
|
||||
DEB_RELEASE = $(RELEASE)ppa
|
||||
# Sign OFFICIAL builds using 'DEBSIGN_KEYID'
|
||||
|
|
Loading…
Reference in a new issue