Skip to content
Snippets Groups Projects
Commit ff81edf3 authored by Marvin Scholz's avatar Marvin Scholz Committed by Jean-Baptiste Kempf
Browse files

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.
parent a1b7745f
No related branches found
No related tags found
Loading
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment