We need to eliminate symlinks in the resulting application bundle since

FSCopyObject skips over symlinks, which would cause nsUpdateDriver.cpp
to fail to copy the complete updater bundle.


git-svn-id: svn://10.0.0.236/trunk@175019 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
darin%meer.net
2005-06-22 20:52:53 +00:00
parent 45e8135a9b
commit da2565e612

View File

@@ -100,5 +100,8 @@ libs::
mkdir -p $(DIST)/bin/updater.app
rsync -a --exclude CVS $(srcdir)/macbuild/Contents $(DIST)/bin/updater.app
mkdir -p $(DIST)/bin/updater.app/Contents/MacOS
mv -f $(DIST)/bin/updater $(DIST)/bin/updater.app/Contents/MacOS
# copy and remove to un-symlink (FSCopyObject seems to not copy symlinks)
rm -f $(DIST)/bin/updater.app/Contents/MacOS/updater
cp -f $(DIST)/bin/updater $(DIST)/bin/updater.app/Contents/MacOS
rm -f $(DIST)/bin/updater
endif