Skip to content

Commit

Permalink
scripts: Make sure return 0 when finished
Browse files Browse the repository at this point in the history
Change-Id: Idc0e9953960d74d58149809209b833bd366c0919
Signed-off-by: Jeffy Chen <[email protected]>
  • Loading branch information
JeffyCN committed Apr 28, 2022
1 parent a1027b4 commit 0138006
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/fixup_dummy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ cd "$DEST_DIR"
cp $SOURCE libmali.so
cp -a libmali.so $SOURCE
[ -f libMali.so ] && cp -a libmali.so libMali.so

exit 0
2 changes: 2 additions & 0 deletions scripts/fixup_nowrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ cd "$DEST_DIR"
for f in $(cd $BUILD_DIR && find . -maxdepth 1 -type f -name "lib*.so.[0-9]"); do
cp -a libmali.so $f
done

exit 0
2 changes: 2 additions & 0 deletions scripts/fixup_nox11.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ HEADER="${MESON_INSTALL_DESTDIR_PREFIX:-/usr}/$1/EGL/eglplatform.h"

[ -f "$HEADER" ] && \
sed -i 's/MESA_EGL_NO_X11_HEADERS/__unix__/g' "$HEADER"

exit 0
2 changes: 2 additions & 0 deletions scripts/grabber.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,5 @@ case ${OPTIMIZE} in
esac

find ${DIR}/${ARCH}* -name ${LIB}

exit 0
2 changes: 2 additions & 0 deletions scripts/parse_name.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,5 @@ esac
for lib in "$@";do
parse_name $(echo $lib|grep -o "libmali-[^\.]*")
done

exit 0

0 comments on commit 0138006

Please sign in to comment.