aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-07-02 18:26:52 +0000
committerGerald Combs <gerald@wireshark.org>2013-07-02 18:26:52 +0000
commitb2788e56871c0f7a3cb5fec03b7b4c3fa51dd6e8 (patch)
tree963f20115a050fcfae6936143100d5c8b050a09a /ui
parentd27f026884ebc6ffd565fa982ba4b786a5d847e5 (diff)
Preserve symlinks when copying libraries into the application bundle on
OS X so that it doesn't become excessively large. svn path=/trunk/; revision=50317
Diffstat (limited to 'ui')
-rw-r--r--ui/qt/QtShark.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/QtShark.pro b/ui/qt/QtShark.pro
index deed489c79..be4ef33f4d 100644
--- a/ui/qt/QtShark.pro
+++ b/ui/qt/QtShark.pro
@@ -336,7 +336,7 @@ unix:!macx {
# qmake 2.01a / Qt 4.7.0 doesn't set DESTDIR on OS X.
macx {
for(FILE,EXTRA_BINFILES){
- QMAKE_POST_LINK += $$quote(cp $${FILE} $${DESTDIR}/$${TARGET}.app/Contents/MacOS$$escape_expand(\\n\\t))
+ QMAKE_POST_LINK += $$quote(cp -R $${FILE} $${DESTDIR}/$${TARGET}.app/Contents/MacOS$$escape_expand(\\n\\t))
}
}