diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-12-22 02:49:51 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-12-22 02:49:51 +0100 |
commit | 94364642e1735e697c8506423f9a60fb055e87af (patch) | |
tree | ae27a5b04b6f9fc84102acb33fa39689e54f376b | |
parent | db9f741875ad1fd3c7c3e5b932420081862159bc (diff) | |
download | blogc-94364642e1735e697c8506423f9a60fb055e87af.tar.gz blogc-94364642e1735e697c8506423f9a60fb055e87af.tar.bz2 blogc-94364642e1735e697c8506423f9a60fb055e87af.zip |
-rw-r--r-- | .yatr.yml | 4 | ||||
-rwxr-xr-x | build-aux/build-windows.sh | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -51,7 +51,7 @@ targets: - --disable-tests - --disable-git-receiver - --disable-make - - --disable-runserver + - --enable-runserver task_script: build-aux/build-windows.sh win64: configure_args: @@ -62,5 +62,5 @@ targets: - --disable-tests - --disable-git-receiver - --disable-make - - --disable-runserver + - --enable-runserver task_script: build-aux/build-windows.sh diff --git a/build-aux/build-windows.sh b/build-aux/build-windows.sh index b00fbe6..7e24cb6 100755 --- a/build-aux/build-windows.sh +++ b/build-aux/build-windows.sh @@ -4,12 +4,12 @@ set -ex DESTDIR="${PN}-${TARGET}-${PV}" -${MAKE_CMD:-make} blogc.exe +${MAKE_CMD:-make} blogc.exe blogc-runserver.exe rm -rf "${DESTDIR}" mkdir -p "${DESTDIR}" -cp .libs/blogc.exe "${DESTDIR}/" +cp .libs/blogc.exe .libs/blogc-runserver.exe "${DESTDIR}/" cp ../LICENSE "${DESTDIR}/" cp ../README.md "${DESTDIR}/" |