Commit 9419a9fd by Rafael Avila de Espindola Committed by Rafael Espindola

Makefile.in (install-plugin): Fix srcdir handling.

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

	* Makefile.in (install-plugin): Fix srcdir handling.

From-SVN: r147180
parent fff1894c
2009-05-06 Rafael Avila de Espindola <espindola@google.com>
* Makefile.in (install-plugin): Fix srcdir handling.
2009-05-06 Andrey Belevantsev <abel@ispras.ru>
* tree-ssa.c (execute_update_address_taken): Handle TARGET_MEM_REF
......
......@@ -4020,8 +4020,9 @@ install-plugin: installdirs
else continue; \
fi; \
case $$path in \
"$(srcdir)"*/config/* | "$(srcdir)"*.def ) \
base=`echo $$path | sed "s|$(srcdir)||"`;; \
"$(srcdir)"*/config/* | "$(srcdir)"/*.def ) \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
base=`echo "$$path" | sed -e "s|$$srcdirstrip/||"`;; \
*) base=`basename $$path` ;; \
esac; \
dest=$(plugin_includedir)/$$base; \
......
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