aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2020-07-18 16:10:25 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2020-07-18 16:10:25 +0200
commitf02df72c9f45958ca374a641cdd79a8f938abc63 (patch)
treed0275e139802ff6b37ad99399d02ef4ee71f8c0d
parent78f0c9fe23c27cebbc451c47df890463d069ce5b (diff)
Change BUILD2_REPO to point to queue
-rw-r--r--build-clang.bat4
-rw-r--r--build-mingw.bat4
-rw-r--r--build-msvc.bat4
-rwxr-xr-xbuild.sh4
4 files changed, 8 insertions, 8 deletions
diff --git a/build-clang.bat b/build-clang.bat
index 4fd3f98..8c034c2 100644
--- a/build-clang.bat
+++ b/build-clang.bat
@@ -43,8 +43,8 @@ set "owd=%CD%"
rem Package repository URL (or path).
rem
if "_%BUILD2_REPO%_" == "__" (
- set "BUILD2_REPO=https://stage.build2.org/1"
-rem set "BUILD2_REPO=https://pkg.cppget.org/1/queue/alpha"
+rem set "BUILD2_REPO=https://stage.build2.org/1"
+ set "BUILD2_REPO=https://pkg.cppget.org/1/queue/alpha"
rem set "BUILD2_REPO=https://pkg.cppget.org/1/alpha"
)
diff --git a/build-mingw.bat b/build-mingw.bat
index 77970d5..6b7d9de 100644
--- a/build-mingw.bat
+++ b/build-mingw.bat
@@ -42,8 +42,8 @@ set "owd=%CD%"
rem Package repository URL (or path).
rem
if "_%BUILD2_REPO%_" == "__" (
- set "BUILD2_REPO=https://stage.build2.org/1"
-rem set "BUILD2_REPO=https://pkg.cppget.org/1/queue/alpha"
+rem set "BUILD2_REPO=https://stage.build2.org/1"
+ set "BUILD2_REPO=https://pkg.cppget.org/1/queue/alpha"
rem set "BUILD2_REPO=https://pkg.cppget.org/1/alpha"
)
diff --git a/build-msvc.bat b/build-msvc.bat
index f675468..dc7667a 100644
--- a/build-msvc.bat
+++ b/build-msvc.bat
@@ -35,8 +35,8 @@ set "owd=%CD%"
rem Package repository URL (or path).
rem
if "_%BUILD2_REPO%_" == "__" (
- set "BUILD2_REPO=https://stage.build2.org/1"
-rem set "BUILD2_REPO=https://pkg.cppget.org/1/queue/alpha"
+rem set "BUILD2_REPO=https://stage.build2.org/1"
+ set "BUILD2_REPO=https://pkg.cppget.org/1/queue/alpha"
rem set "BUILD2_REPO=https://pkg.cppget.org/1/alpha"
)
diff --git a/build.sh b/build.sh
index 3e42a06..16ef269 100755
--- a/build.sh
+++ b/build.sh
@@ -8,8 +8,8 @@ usage="Usage: $0 [-h|--help] [<options>] <c++-compiler> [<compile-options>]"
# Package repository URL (or path).
#
if test -z "$BUILD2_REPO"; then
- BUILD2_REPO="https://stage.build2.org/1"
-# BUILD2_REPO="https://pkg.cppget.org/1/queue/alpha"
+# BUILD2_REPO="https://stage.build2.org/1"
+ BUILD2_REPO="https://pkg.cppget.org/1/queue/alpha"
# BUILD2_REPO="https://pkg.cppget.org/1/alpha"
fi