[vlc-commits] [Git][videolan/vlc][master] contrib: breakpad: correctly install dump_syms
Jean-Baptiste Kempf
gitlab at videolan.org
Wed Jun 2 16:34:24 UTC 2021
Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC
Commits:
ff81edf3 by Marvin Scholz at 2021-06-02T12:20:19+00:00
contrib: breakpad: correctly install dump_syms
If no bin folder existed, it would install the dump_syms binary
to a binary called bin, causing all other contribs built after to
fail with a rather confusing error as they are of course unable to
install into an executable named bin instead of a folder.
- - - - -
1 changed file:
- contrib/src/breakpad/rules.mak
Changes:
=====================================
contrib/src/breakpad/rules.mak
=====================================
@@ -29,7 +29,8 @@ ifdef HAVE_MACOSX
# Tools
cd $</src/tools/mac/dump_syms && \
xcodebuild $(XCODE_FLAGS) CLANG_CXX_LIBRARY=libc++ && \
- cp -R build/Release/dump_syms "$(PREFIX)/bin"
+ install -d "$(PREFIX)/bin" && \
+ install build/Release/dump_syms "$(PREFIX)/bin"
else
$(RECONF)
cd $< && $(HOSTVARS) ./configure $(HOSTCONF) --disable-processor
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/ff81edf3883f742c91c746f36ef29c9828e4a267
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/ff81edf3883f742c91c746f36ef29c9828e4a267
You're receiving this email because of your account on code.videolan.org.
More information about the vlc-commits
mailing list