We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e89b60 commit 120e333Copy full SHA for 120e333
Makefile.in
@@ -394,11 +394,12 @@ ctags:
394
release:
395
cvs tag release-`cat VERSION | sed "s/\./-/g"`
396
397
-bundle: all
+bundle-nolib: all
398
mkdir -p $(BUNDLE)/Contents/MacOS
399
cp $(TARGET) $(BUNDLE)/Contents/MacOS/
400
cp -r data/MacOS-bundle-template/* $(BUNDLE)/
401
402
+bundle: bundle-nolib
403
@if `which dylibbundler`; then \
404
dylibbundler -od -b -x $(BUNDLE)/Contents/MacOS/uv -d $(BUNDLE)/Contents/libs/; \
405
if ( otool -L $(BUNDLE)/Contents/MacOS/uv | grep -q @rpath/libcudart.dylib ) ; then install_name_tool -change @rpath/libcudart.dylib @executable_path/../libs/libcudart.dylib $(BUNDLE)/Contents/MacOS/uv ; fi ; \
0 commit comments