tRemoved ${srcdir} when installing plugins, as this causes "make distcheck" to fail; the plugin objects are built in the _current_ directory, not the source directory! - 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 a660584bec82a181beb7d388e21cacff86080bd1
(DIR) parent 74b39dc9b927406a5023f1de4f4bacb98b03e4cc
(HTM) Author: Ben Webb <ben@salilab.org>
Date: Tue, 25 Jun 2002 15:08:36 +0000
Removed ${srcdir} when installing plugins, as this causes "make distcheck"
tto fail; the plugin objects are built in the _current_ directory, not the
source directory!
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@@ -32,6 +32,6 @@ all-local: ${PLUGINS}
install-exec-am:
${mkinstalldirs} ${PLUGINDIR}
for plug in ${PLUGINS}; do \
- ${INSTALL} ${srcdir}/$${plug} ${PLUGINDIR}; \
+ ${INSTALL} $${plug} ${PLUGINDIR}; \
done
endif