diff options
| author | scarab <scarab@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-08-28 22:19:31 +0000 |
|---|---|---|
| committer | scarab <scarab@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-08-28 22:19:31 +0000 |
| commit | 11afc3640412eaa749951d86790360edde45158d (patch) | |
| tree | 209c5786e682f2f050bf68d2545f715085a1725d /packaging | |
| parent | 335a2accf7066189f6793c8a0592de554bb3b6e8 (diff) | |
- posledni oprava spatny nazev cesty k LIB
git-svn-id: http://opensvn.csie.org/tuxanci_ng@260 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
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 |