Skip to content

Commit

Permalink
Missing '-' for CFLAGS parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-vincent committed Aug 13, 2017
1 parent e37227d commit 45bc0bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class FreelanEnvironment(Environment):

if sys.platform.startswith('openbsd'):
self.Append(CXXFLAGS=['-I/usr/local/include', '-pthread', '-Wno-shadow', '-Wno-nested-anon-types', '-Wno-unused-parameter', '-Wno-unused-local-typedef'])
self.Append(CFLAGS=['-I/usr/local/include', 'pthread', '-Wno-shadow', '-Wno-nested-anon-types', '-Wno-unused-parameter', '-Wno-unused-local-typedef'])
self.Append(CFLAGS=['-I/usr/local/include', '-pthread', '-Wno-shadow', '-Wno-nested-anon-types', '-Wno-unused-parameter', '-Wno-unused-local-typedef'])
self.Append(LDFLAGS=['-L/usr/local/lib'])
self.Append(LIBPATH=['/usr/local/lib'])

Expand Down

0 comments on commit 45bc0bf

Please sign in to comment.