summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2012-06-06 12:42:34 +0300
committerVolker Grabsch <vog@notjusthosting.com>2012-06-06 12:42:34 +0300
commitcd929724be459ab969e9c29d867c7a1a8c99ee0f (patch)
tree036ffa5fc6d930c70be57bb971e9621905ece8fe /src
parent4739a43b5fb9397036eea218ff67e2163faa948b (diff)
downloadxine-lib-cd929724be459ab969e9c29d867c7a1a8c99ee0f.tar.gz
xine-lib-cd929724be459ab969e9c29d867c7a1a8c99ee0f.tar.bz2
fix make uninstall for libxine-1.def
"make uninstall" tries to remove the local "libxine-1.def" instead of the installed "/.../i686-pc-mingw32/lib/libxine-1.def".
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xine-engine/Makefile.am b/src/xine-engine/Makefile.am
index b1c73a112..cd8f83df0 100644
--- a/src/xine-engine/Makefile.am
+++ b/src/xine-engine/Makefile.am
@@ -48,7 +48,7 @@ install-exec-local:
-cp -p $(DEF_FILE) $(DESTDIR)$(libdir)
uninstall-local:
- -rm -f $(DEF_FILE)
+ -rm -f $(DESTDIR)$(libdir)/$(DEF_FILE)
endif
$(XINEUTILS_LIB):