Commit 8bc369ef authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Win32: stop bitching us and fail in the middle of the build

Either you die at start or you don't. Stop making us loosing our time.
parent 0bb74b20
......@@ -697,6 +697,13 @@ package-win-common:
else \
echo "OK."; mkdir -p "$(win32_destdir)"; \
fi
# Same for debug symbols dir
@if test -e "$(win32_debugdir)"; then \
echo "Error: please remove $(win32_debugdir), it is in the way"; \
false; \
else \
echo "OK."; mkdir -p "$(win32_debugdir)"; \
fi
# Copy relevant files
# Copy executables and libs
......@@ -921,12 +928,6 @@ endif
# Strip DLLs
package-win-common-strip: package-win32-base-debug
@if test -e "$(win32_debugdir)"; then \
echo "Error: please remove $(win32_debugdir), it is in the way"; \
false; \
else \
echo "OK."; mkdir -p "$(win32_debugdir)"; \
fi
for i in "" $(win32_destdir)/*$(LIBEXT) \
$(win32_destdir)/*$(EXEEXT) \
$(win32_destdir)/activex/*$(LIBEXT) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment