[sane-devel] Minor message bug in backends/Makefile.am ?
Stef
stef.dev at free.fr
Tue Jul 30 12:35:34 UTC 2013
Hello,
it seems that the messages in install-becfg from
backends/Makefile.am don't use $(DESTDIR). Shouldn't it be like:
diff --git a/backend/Makefile.am b/backend/Makefile.am
index f84d23e..3f3479c 100644
--- a/backend/Makefile.am
+++ b/backend/Makefile.am
@@ -125,9 +125,9 @@ install-becfg:
@list="$(BACKEND_CONFS_ENABLED) saned.conf dll.conf"; for cfg in
$$list; do \
if test ! -r $${cfg}; then continue; fi; \
if test -f $(DESTDIR)$(configdir)/$${cfg}; then \
- echo NOT overwriting $${cfg} in $(configdir)...; \
+ echo NOT overwriting $${cfg} in $(DESTDIR)$(configdir)...; \
else \
- echo installing $${cfg} in $(configdir)/$${cfg}...; \
+ echo installing $${cfg} in $(DESTDIR)$(configdir)/$${cfg}...; \
$(INSTALL_DATA) $${cfg} $(DESTDIR)$(configdir)/$${cfg} \
|| exit 1; \
fi; \
Regards,
Stef
More information about the sane-devel
mailing list