summaryrefslogtreecommitdiff
path: root/css/parser.y
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2007-05-30 22:39:54 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2007-05-30 22:39:54 +0000
commit6807b4208a27d9037229b16f31cc409d15a992f5 (patch)
tree1e62c423a96b7c92db82d6cc7dfc18c2177912a8 /css/parser.y
parent25e22eb1f5046fdf9ef1d470b86faf640375de08 (diff)
downloadnetsurf-6807b4208a27d9037229b16f31cc409d15a992f5.tar.gz
netsurf-6807b4208a27d9037229b16f31cc409d15a992f5.tar.bz2
Remove the netsurf/ from the include paths and rationalise use of <> vs "" in includes
NetSurf includes are now done with ""s and other system includes with <>s as C intended. The scandeps tool has been updated to only look for ""ed includes, and to verify that the files exist in the tree before adding them to the dependency lines. The depend rule has therefore been augmented to make sure the autogenerated files are built before it is run. This is untested under self-hosted RISC OS builds. All else tested and works. svn path=/trunk/netsurf/; revision=3307
Diffstat (limited to 'css/parser.y')
-rw-r--r--css/parser.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/css/parser.y b/css/parser.y
index 49bf932fc..02d11a06d 100644
--- a/css/parser.y
+++ b/css/parser.y
@@ -400,8 +400,8 @@ any(A) ::= ASTERISK(B).
%include {
#include <strings.h>
#define CSS_INTERNALS
-#include "netsurf/css/css.h"
-#include "netsurf/utils/utils.h" }
+#include "css/css.h"
+#include "utils/utils.h" }
%name css_parser_
%token_type { struct css_parser_token }