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 /build-aux | |
parent | db9f741875ad1fd3c7c3e5b932420081862159bc (diff) | |
download | blogc-94364642e1735e697c8506423f9a60fb055e87af.tar.gz blogc-94364642e1735e697c8506423f9a60fb055e87af.tar.bz2 blogc-94364642e1735e697c8506423f9a60fb055e87af.zip |
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/build-windows.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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}/" |