diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2012-06-06 12:41:28 +0300 |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2012-06-06 12:41:28 +0300 |
commit | 4739a43b5fb9397036eea218ff67e2163faa948b (patch) | |
tree | 54b66bead271c598008963665379b55014a2cef4 | |
parent | 8ef238a8cc53fe097808e79de0682b140ff07057 (diff) | |
download | xine-lib-4739a43b5fb9397036eea218ff67e2163faa948b.tar.gz xine-lib-4739a43b5fb9397036eea218ff67e2163faa948b.tar.bz2 |
fix install/uninstall static library in windows
The problem is that libxine-1.def is not generated when building a static
library, so it can't be installed or uninstalled. So the corresponding commands
in Makefile.am should be allowed to fail.
-rw-r--r-- | src/xine-engine/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/Makefile.am b/src/xine-engine/Makefile.am index 535be3557..b1c73a112 100644 --- a/src/xine-engine/Makefile.am +++ b/src/xine-engine/Makefile.am @@ -45,10 +45,10 @@ noinst_HEADERS = bswap.h ffmpeg_bswap.h xine_private.h if WIN32 install-exec-local: - cp -p $(DEF_FILE) $(DESTDIR)$(libdir) + -cp -p $(DEF_FILE) $(DESTDIR)$(libdir) uninstall-local: - rm -f $(DEF_FILE) + -rm -f $(DEF_FILE) endif $(XINEUTILS_LIB): |