Skip to content

Commit

Permalink
Rename osxchecknonsyslink.sh to osx_checkbundlelink.sh
Browse files Browse the repository at this point in the history
Rename and add argument check
  • Loading branch information
wader committed Mar 22, 2011
1 parent 2e668d8 commit be029a2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion support/osx.mk
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ endif

.PHONY: Showtime.dmg
Showtime.dmg:
support/osxchecknonsyslink.sh ${PROG}
support/osx_checkbundlelink.sh ${PROG}
support/mkdmg ${APPDIR} Showtime support/osx/hts.icns Showtime.dmg

Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!/bin/sh

if [ "$1" = "" ] ; then
echo "Usage: $0 binary-path"
exit
fi

BINDIR=`dirname $1`

otool -L $1 | tail +2 | cut -f 1 -d " " | while read LIB ; do
Expand Down

0 comments on commit be029a2

Please sign in to comment.