aboutsummaryrefslogtreecommitdiff
path: root/Source/CParse
diff options
context:
space:
mode:
authorAlistair Delva <adelva@google.com>2020-08-05 10:34:42 -0700
committerAlistair Delva <adelva@google.com>2020-08-13 11:30:20 -0700
commitcbf98c8eb5d9353c2014b07ee677960a8fbdd64e (patch)
tree88f05ffcf25e8799b5c40bb85f2b1898ef51f44e /Source/CParse
parent3c3710e89ac92ac69c90f70ba63a52a97fe41746 (diff)
downloadswig-cbf98c8eb5d9353c2014b07ee677960a8fbdd64e.tar.gz
ANDROID: Update parser.h include path
The Android integration of yacc will write the include file out to a non-controllable location based on the path of the source .y file. Update the direct inclusion of this header to match the schema of the Android build system. Bug: 162801433 Change-Id: Ibe288ab4496d2f0dfb98f95c49fcdcfe0776fd23
Diffstat (limited to 'Source/CParse')
-rw-r--r--Source/CParse/cscanner.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CParse/cscanner.c b/Source/CParse/cscanner.c
index 4566817a0..cb2fdb5dd 100644
--- a/Source/CParse/cscanner.c
+++ b/Source/CParse/cscanner.c
@@ -16,7 +16,7 @@
* ----------------------------------------------------------------------------- */
#include "cparse.h"
-#include "parser.h"
+#include "Source/CParse/parser.h"
#include <string.h>
#include <ctype.h>