Skip to content
This repository was archived by the owner on Sep 4, 2019. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rim-build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pushd $SCRIPT_DIR

usage()
{
echo "$0 <install|clean> <static|dynamic>"
echo "$0 <install|clean> <static|shared>"
}

echo_action()
Expand Down Expand Up @@ -115,7 +115,7 @@ if [ "$ACTION" != "install" ] && [ "$ACTION" != "clean" ] ; then
fi

LINK_TYPE=$2
if [ "$LINK_TYPE" != "static" ] && [ "$LINK_TYPE" != "dynamic" ] ; then
if [ "$LINK_TYPE" != "static" ] && [ "$LINK_TYPE" != "shared" ] ; then
usage
exit
fi
Expand Down