File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -453,7 +453,7 @@ valopt datadir "${CFG_PREFIX}/share" "install data"
453
453
valopt infodir " ${CFG_PREFIX} /share/info" " install additional info"
454
454
valopt mandir " ${CFG_PREFIX} /share/man" " install man pages in PATH"
455
455
456
- valopt release-channel " source " " the name of the release channel to build"
456
+ valopt release-channel " dev " " the name of the release channel to build"
457
457
458
458
# On windows we just store the libraries in the bin directory because
459
459
# there's no rpath. This is where the build system itself puts libraries;
@@ -479,10 +479,10 @@ validate_opt
479
479
480
480
# Validate the release channel
481
481
case " $CFG_RELEASE_CHANNEL " in
482
- (source | nightly | beta | stable)
482
+ (dev | nightly | beta | stable)
483
483
;;
484
484
(* )
485
- err " release channel must be 'source ', 'nightly', 'beta' or 'stable'"
485
+ err " release channel must be 'dev ', 'nightly', 'beta' or 'stable'"
486
486
;;
487
487
esac
488
488
Original file line number Diff line number Diff line change @@ -35,9 +35,9 @@ ifeq ($(CFG_RELEASE_CHANNEL),nightly)
35
35
CFG_RELEASE =$(CFG_RELEASE_NUM ) -nightly
36
36
CFG_PACKAGE_VERS =nightly
37
37
endif
38
- ifeq ($(CFG_RELEASE_CHANNEL ) ,source )
39
- CFG_RELEASE =$(CFG_RELEASE_NUM ) -pre
40
- CFG_PACKAGE_VERS =$(CFG_RELEASE_NUM ) -pre
38
+ ifeq ($(CFG_RELEASE_CHANNEL ) ,dev )
39
+ CFG_RELEASE =$(CFG_RELEASE_NUM ) -dev
40
+ CFG_PACKAGE_VERS =$(CFG_RELEASE_NUM ) -dev
41
41
endif
42
42
43
43
# The name of the package to use for creating tarballs, installers etc.
You can’t perform that action at this time.
0 commit comments