glib-gen.mak: Also use #include "header" instead of #include <header> for the headers...
authorSebastian Dröge <slomo@circular-chaos.org>
Tue, 18 Dec 2007 15:29:07 +0000 (15:29 +0000)
committerSebastian Dröge <slomo@circular-chaos.org>
Tue, 18 Dec 2007 15:29:07 +0000 (15:29 +0000)
Original commit message from CVS:
* glib-gen.mak:
Also use #include "header" instead of #include <header> for the
headers that were used to generate the source files for the same
reason as below.
Remove whitespace before #include.

ChangeLog
glib-gen.mak

index 7271b00..fd603e0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,15 @@
 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
 
        * glib-gen.mak:
+         Also use #include "header" instead of #include <header> for the
+         headers that were used to generate the source files for the same
+         reason as below.
+
+         Remove whitespace before #include.
+
+2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
+
+       * glib-gen.mak:
          Use #include "header" instead of #include <header> for the generated
          enum C files as the file will always be in the same directory and
          some compilers seem to be a bit strict about that unless . is added
index dcb08b4..f9027da 100644 (file)
@@ -5,7 +5,7 @@
 #glib_enum_define=GST_COLOR_BALANCE
 #glib_enum_prefix=gst_color_balance
 
-enum_headers=$(foreach h,$(glib_enum_headers),\#include <$(h)>\n)
+enum_headers=$(foreach h,$(glib_enum_headers),\n\#include \"$(h)\")
 
 # these are all the rules generating the relevant files
 %-marshal.h: %-marshal.list