diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-09-05 19:03:41 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-09-05 19:03:41 +0200 |
commit | 583079bea545963cbc964a53dbacb2174be97799 (patch) | |
tree | ae52f0ed6ffbaaf9a6a83a50e55fb53036e8ed47 /build.sh | |
parent | 642adde3f1df3db2d1d2b0ef9321c5b0954d4368 (diff) |
Add major.minor version to created bpkg configuration directory
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -18,6 +18,11 @@ if test -z "$BUILD2_REPO"; then # BUILD2_REPO="https://pkg.cppget.org/1/alpha" fi +# Bpkg configuration directory. +# +cver="0.4" +cdir="build2-toolchain-$cver" + diag () { echo "$*" 1>&2 @@ -134,8 +139,8 @@ if test -f build/config.build; then exit 1 fi -if test -d ../build2-toolchain; then - diag "../build2-toolchain/ bpkg configuration directory already exists" +if test -d "../$cdir"; then + diag "../$cdir/ bpkg configuration directory already exists" exit 1 fi @@ -195,9 +200,8 @@ run bpkg-stage --version # Install. # run cd .. -run mkdir build2-toolchain -run cd build2-toolchain -cdir="$(pwd)" +run mkdir "$cdir" +run cd "$cdir" run bpkg-stage create \ cc \ |