Commit 3b3e44eb by Rafael Avila de Espindola Committed by Rafael Espindola

Makefile.in (install-plugin): Simplify a bit.

2009-05-07  Rafael Avila de Espindola  <espindola@google.com>

	* Makefile.in (install-plugin): Simplify a bit.

From-SVN: r147244
parent fac41238
2009-05-07 Rafael Avila de Espindola <espindola@google.com>
* Makefile.in (install-plugin): Simplify a bit.
2009-05-07 Paolo Bonzini <bonzini@gnu.org>
* Makefile.in (OBJS-common): Add regcprop.o.
......
......@@ -4017,6 +4017,7 @@ install-plugin: installdirs
# other files are flattened to a single directory.
$(mkinstalldirs) $(DESTDIR)$(plugin_includedir)
headers=`echo $(PLUGIN_HEADERS) | tr ' ' '\n' | sort -u`; \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
for file in $$headers; do \
if [ -f $$file ] ; then \
path=$$file; \
......@@ -4025,8 +4026,7 @@ install-plugin: installdirs
else continue; \
fi; \
case $$path in \
"$(srcdir)"*/config/* | "$(srcdir)"/*.def ) \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
"$(srcdir)"/config/* | "$(srcdir)"/*.def ) \
base=`echo "$$path" | sed -e "s|$$srcdirstrip/||"`;; \
*) base=`basename $$path` ;; \
esac; \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment