tStrip '.libs' suffix from plugin files before trying to remove them. - vaccinewars - be a doctor and try to vaccinate the world
(HTM) git clone git://src.adamsgaard.dk/vaccinewars
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 20f20a01d067762baddcc609129109111fa0d241
(DIR) parent b011c04e2245f06a3ceddff383b0b63a7f6b7fa6
(HTM) Author: Ben Webb <ben@salilab.org>
Date: Mon, 21 Oct 2002 10:26:38 +0000
Strip '.libs' suffix from plugin files before trying to remove them.
Diffstat:
M src/plugins/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am
t@@ -37,6 +37,6 @@ install-exec-am:
uninstall-local:
for plug in ${PLUGINS}; do \
- /bin/rm -f ${PLUGINDIR}/$${plug}; \
+ /bin/rm -f ${PLUGINDIR}/`basename $${plug}`; \
done
endif