diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-06-02 14:46:54 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-06-02 14:46:54 +0200 |
commit | df9d4245a2b42bd031c47b25a48f3f67e1fc651d (patch) | |
tree | 015a66f64841ee1543778eb05b2c81216dafee3b /build-aux/build-static-all.sh | |
parent | 7426cfa1685efcd9b41748207183d1d9c1464b60 (diff) | |
download | blogc-df9d4245a2b42bd031c47b25a48f3f67e1fc651d.tar.gz blogc-df9d4245a2b42bd031c47b25a48f3f67e1fc651d.tar.bz2 blogc-df9d4245a2b42bd031c47b25a48f3f67e1fc651d.zip |
build: fix static-all tar file
Diffstat (limited to 'build-aux/build-static-all.sh')
-rwxr-xr-x | build-aux/build-static-all.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/build-static-all.sh b/build-aux/build-static-all.sh index dd7c243..434ef22 100755 --- a/build-aux/build-static-all.sh +++ b/build-aux/build-static-all.sh @@ -9,5 +9,5 @@ ${MAKE_CMD:-make} DESTDIR="${PWD}/root/${DESTDIR}" install install -m 644 ../LICENSE "root/${DESTDIR}/LICENSE" pushd root > /dev/null -tar -cvJf "../${DESTDIR}.tar.xz" . +tar -cvJf "../${DESTDIR}.tar.xz" "${DESTDIR}" popd > /dev/null |