diff options
Diffstat (limited to 'packaging')
| -rwxr-xr-x | packaging/linux/build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/linux/build.sh b/packaging/linux/build.sh index 3101001..5ab9af3 100755 --- a/packaging/linux/build.sh +++ b/packaging/linux/build.sh @@ -106,7 +106,7 @@ cmake . ${CMAKE_PARAMS} >> "${LOG}" || ( echo "${ERROR_MESSAGE}"; exit 1 ) make >> "${LOG}" || ( echo "${ERROR_MESSAGE}"; exit 1 ) make install DESTDIR="${DEST_DEB}" >> "${LOG}" || ( echo "${ERROR_MESSAGE}"; exit 1 ) cd "${DEST_DEB}"/ -`which strip` --strip-unneeded usr/games/lib/${APPNAME}-${Y}-${VERSION}/* usr/games/bin/* >> "${LOG}" +`which strip` --strip-unneeded usr/games/lib/${APPNAME}-${VERSION}/* usr/games/bin/* >> "${LOG}" md5sum `find . -type f | awk '/.\// { print substr($0, 3) }'` > DEBIAN/md5sums cd "${BUNDLE_PREFIX}" Y_N=$(echo ${Y} |tr s S |tr c C) @@ -131,7 +131,7 @@ cmake . ${CMAKE_PARAMS} >> "${LOG}" || ( echo "${ERROR_MESSAGE}"; exit 1 ) make >> "${LOG}" || ( echo "${ERROR_MESSAGE}"; exit 1 ) make install DESTDIR="${D}_${Y}_${VERSION}-${ARCH}/" >> "${LOG}" || ( echo "${ERROR_MESSAGE}"; exit 1 ) cd "${D}"_"${Y}"_"${VERSION}"-"${ARCH}"/ -`which strip` --strip-unneeded lib/${APPNAME}-${Y}-${VERSION}/* bin/* >> "${LOG}" +`which strip` --strip-unneeded lib/${APPNAME}-${VERSION}/* bin/* >> "${LOG}" done ############################################################################### # DESTRUCTION OF SRC |