diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2019-09-02 23:38:48 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2019-09-02 23:51:15 +0200 |
commit | 4763814c683c50f8a3697b74e764f19c3dacccd5 (patch) | |
tree | 386ff43f024705a32310b882f2161b5f86d8820a /build-aux | |
parent | c12bdb94ecdc44f200a8030dfde4a5ec46053ea6 (diff) | |
download | blogc-4763814c683c50f8a3697b74e764f19c3dacccd5.tar.gz blogc-4763814c683c50f8a3697b74e764f19c3dacccd5.tar.bz2 blogc-4763814c683c50f8a3697b74e764f19c3dacccd5.zip |
migrate codebase to use squareball. again :)feature/squareball
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/build-static.sh | 2 | ||||
-rwxr-xr-x | build-aux/build-windows.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/build-static.sh b/build-aux/build-static.sh index cacca1b..10bb4da 100755 --- a/build-aux/build-static.sh +++ b/build-aux/build-static.sh @@ -2,6 +2,6 @@ set -ex -${MAKE_CMD:-make} LDFLAGS="-all-static" blogc +${MAKE_CMD:-make} LDFLAGS="-all-static" xz -zc blogc > "blogc-static-amd64-${PV}.xz" diff --git a/build-aux/build-windows.sh b/build-aux/build-windows.sh index b00fbe6..56117f4 100755 --- a/build-aux/build-windows.sh +++ b/build-aux/build-windows.sh @@ -4,7 +4,7 @@ set -ex DESTDIR="${PN}-${TARGET}-${PV}" -${MAKE_CMD:-make} blogc.exe +${MAKE_CMD:-make} rm -rf "${DESTDIR}" mkdir -p "${DESTDIR}" |