behalf of romain.geissler@gmail.com. Fix plugin file installation
authorRomain Geissler <romain.geissler@gmail.com>
Mon, 25 Jul 2011 11:15:12 +0000 (11:15 +0000)
committerChristian Bruel <chrbr@gcc.gnu.org>
Mon, 25 Jul 2011 11:15:12 +0000 (13:15 +0200)
From-SVN: r176741

gcc/ChangeLog
gcc/Makefile.in
gcc/c-family/ChangeLog
gcc/c-family/c-pretty-print.h

index e8a7f250dc63ffcbd33df107f2889d4a8eeae0bd..c87ebd7164ab6f105b8a187bc9c6fcabfcee4569 100644 (file)
@@ -1,3 +1,11 @@
+2011-07-22  Romain Geissler  <romain.geissler@gmail.com>
+
+       PR plugins/45348
+       PR plugins/48425
+       PR plugins/46577
+       * Makefile.in: Do not flatten c-family directory when installing
+       plugin headers.
+
 2011-07-25  Eric Botcazou  <ebotcazou@adacore.com>
 
        * ipa-inline.c (can_inline_edge_p): Look into DECL_STRUCT_FUNCTION of
index 88d851351727e49bf904f4fb45335f19a4589f94..e6d17171bcc977f464346e2513b8b828f9a3722c 100644 (file)
@@ -4602,8 +4602,8 @@ s-header-vars: Makefile
 
 # Install the headers needed to build a plugin.
 install-plugin: installdirs lang.install-plugin s-header-vars
-# We keep the directory structure for files in config and .def files. All
-# other files are flattened to a single directory.
+# We keep the directory structure for files in config or c-family and .def
+# files. All other files are flattened to a single directory.
        $(mkinstalldirs) $(DESTDIR)$(plugin_includedir)
        headers=`echo $(PLUGIN_HEADERS) | tr ' ' '\012' | sort -u`; \
        srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
@@ -4615,7 +4615,7 @@ install-plugin: installdirs lang.install-plugin s-header-vars
          else continue; \
          fi; \
          case $$path in \
-         "$(srcdir)"/config/* | "$(srcdir)"/*.def ) \
+         "$(srcdir)"/config/* | "$(srcdir)"/c-family/* | "$(srcdir)"/*.def ) \
            base=`echo "$$path" | sed -e "s|$$srcdirstrip/||"`;; \
          *) base=`basename $$path` ;; \
          esac; \
index be7317d0eb28998f1c25b3adeede9b960a34a0c3..7d8529911d0f984341d2272e96bce0ddb525287f 100644 (file)
@@ -1,3 +1,7 @@
+2011-07-25  Romain Geissler  <romain.geissler@gmail.com>
+
+       * c-pretty-print.h: Search c-common.h in c-family.
+       
 2011-07-22  Jason Merrill  <jason@redhat.com>
 
        PR c++/49793
index b41e8ed8d2ef6f74d280197ce727a38d3555ef33..8d399ddf96e8c37a902c590f5bfd9568438a09ea 100644 (file)
@@ -23,7 +23,7 @@ along with GCC; see the file COPYING3.  If not see
 #define GCC_C_PRETTY_PRINTER
 
 #include "tree.h"
-#include "c-common.h"
+#include "c-family/c-common.h"
 #include "pretty-print.h"