aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-11-19 08:57:38 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-11-19 08:57:38 +0200
commit648aa00d24e8166998b87f350a72bc00642752fd (patch)
treea56bfa06ce06b7faa3ff7472aa6a2ee3dd1e51ba
parentf12314343c042b9c24bffab5703856a9108bcb1c (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 9af1f57..2aff96f 100644
--- a/build-clang.bat
+++ b/build-clang.bat
@@ -44,8 +44,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 10842a4..c805d2d 100644
--- a/build-mingw.bat
+++ b/build-mingw.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-msvc.bat b/build-msvc.bat
index 5c0d845..62bd8ab 100644
--- a/build-msvc.bat
+++ b/build-msvc.bat
@@ -36,8 +36,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 387be95..799b022 100755
--- a/build.sh
+++ b/build.sh
@@ -9,8 +9,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