Skip to content
Snippets Groups Projects
Commit ffae43c9 authored by Craig Tiller's avatar Craig Tiller
Browse files

Fix paths

parent 8424aee4
No related branches found
No related tags found
No related merge requests found
...@@ -33,13 +33,13 @@ ...@@ -33,13 +33,13 @@
/* generates constant tables for hpack.c */ /* generates constant tables for hpack.c */
#include <assert.h>
#include <stddef.h> #include <stddef.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <assert.h>
#include <grpc/support/log.h> #include <grpc/support/log.h>
#include "src/core/transport/chttp2/huffsyms.h" #include "src/core/lib/transport/chttp2/huffsyms.h"
/* /*
* first byte LUT generation * first byte LUT generation
......
...@@ -215,9 +215,9 @@ if args: ...@@ -215,9 +215,9 @@ if args:
C = open('/dev/null', 'w') C = open('/dev/null', 'w')
else: else:
H = open(os.path.join( H = open(os.path.join(
os.path.dirname(sys.argv[0]), '../../../src/core/transport/static_metadata.h'), 'w') os.path.dirname(sys.argv[0]), '../../../src/core/lib/transport/static_metadata.h'), 'w')
C = open(os.path.join( C = open(os.path.join(
os.path.dirname(sys.argv[0]), '../../../src/core/transport/static_metadata.c'), 'w') os.path.dirname(sys.argv[0]), '../../../src/core/lib/transport/static_metadata.c'), 'w')
# copy-paste copyright notice from this file # copy-paste copyright notice from this file
with open(sys.argv[0]) as my_source: with open(sys.argv[0]) as my_source:
...@@ -247,10 +247,10 @@ explanation of what's going on. ...@@ -247,10 +247,10 @@ explanation of what's going on.
print >>H, '#ifndef GRPC_INTERNAL_CORE_TRANSPORT_STATIC_METADATA_H' print >>H, '#ifndef GRPC_INTERNAL_CORE_TRANSPORT_STATIC_METADATA_H'
print >>H, '#define GRPC_INTERNAL_CORE_TRANSPORT_STATIC_METADATA_H' print >>H, '#define GRPC_INTERNAL_CORE_TRANSPORT_STATIC_METADATA_H'
print >>H print >>H
print >>H, '#include "src/core/transport/metadata.h"' print >>H, '#include "src/core/lib/transport/metadata.h"'
print >>H print >>H
print >>C, '#include "src/core/transport/static_metadata.h"' print >>C, '#include "src/core/lib/transport/static_metadata.h"'
print >>C print >>C
print >>H, '#define GRPC_STATIC_MDSTR_COUNT %d' % len(all_strs) print >>H, '#define GRPC_STATIC_MDSTR_COUNT %d' % len(all_strs)
...@@ -309,4 +309,3 @@ print >>H, '#endif /* GRPC_INTERNAL_CORE_TRANSPORT_STATIC_METADATA_H */' ...@@ -309,4 +309,3 @@ print >>H, '#endif /* GRPC_INTERNAL_CORE_TRANSPORT_STATIC_METADATA_H */'
H.close() H.close()
C.close() C.close()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment