fix(Makefile): remove deprecated environment variables

This commit is contained in:
Markus Pesch 2019-11-12 21:44:12 +01:00
parent 4eb41e8dfa
commit caa72516dd
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982

View File

@ -1,4 +1,4 @@
# VERSION/RELEASE # VERSION
# If no version is specified as a parameter of make, the last git hash # If no version is specified as a parameter of make, the last git hash
# value is taken. # value is taken.
# VERSION?=$(shell git describe --abbrev=0)+hash.$(shell git rev-parse --short HEAD) # VERSION?=$(shell git describe --abbrev=0)+hash.$(shell git rev-parse --short HEAD)
@ -156,8 +156,7 @@ container-run:
--volume ${PWD}:/workspace \ --volume ${PWD}:/workspace \
${BUILD_IMAGE} \ ${BUILD_IMAGE} \
make ${COMMAND} \ make ${COMMAND} \
VERSION=${VERSION} \ VERSION=${VERSION}
RELEASE=${RELEASE}
# PHONY # PHONY
# ============================================================================== # ==============================================================================