Skip to content

Commit 579aa1a

Browse files
committed
remove CFG_RELEASE from the Makefile
The previous commit made this unused; much of the logic for assigning to this variable now lives in Cargo itself.
1 parent 775c900 commit 579aa1a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Makefile.in

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,12 @@ include config.mk
99
export PATH := $(dir $(CFG_RUSTC)):$(PATH)
1010

1111
ifeq ($(CFG_RELEASE_CHANNEL),stable)
12-
CFG_RELEASE=$(CFG_RELEASE_NUM)
1312
CFG_PACKAGE_VERS=$(CFG_RELEASE_NUM)
1413
else ifeq ($(CFG_RELEASE_CHANNEL),beta)
15-
CFG_RELEASE=$(CFG_RELEASE_NUM)-beta$(CFG_PRERELEASE_VERSION)
1614
CFG_PACKAGE_VERS=beta
1715
else ifeq ($(CFG_RELEASE_CHANNEL),nightly)
18-
CFG_RELEASE=$(CFG_RELEASE_NUM)-nightly
1916
CFG_PACKAGE_VERS=nightly
2017
else ifeq ($(CFG_RELEASE_CHANNEL),dev)
21-
CFG_RELEASE=$(CFG_RELEASE_NUM)-dev
2218
CFG_PACKAGE_VERS=$(CFG_RELEASE_NUM)-dev
2319
endif
2420

0 commit comments

Comments
 (0)