Skip to content

Commit 1a80a60

Browse files
jeroenrinzemaauxten
authored andcommitted
fixed invalid non-alphanumeric build constraint
1 parent 94e7ea1 commit 1a80a60

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1418,7 +1418,7 @@ pkg/sql/lex/reserved_keywords.go: pkg/sql/parser/sql.y pkg/sql/parser/reserved_k
14181418
gofmt -s -w $@
14191419

14201420
pkg/sql/lex/keywords.go: pkg/sql/parser/sql.y pkg/sql/lex/all_keywords.go | bin/.bootstrap
1421-
go run -tags all-keywords pkg/sql/lex/all_keywords.go < $< > $@.tmp || rm $@.tmp
1421+
go run -tags all_keywords pkg/sql/lex/all_keywords.go < $< > $@.tmp || rm $@.tmp
14221422
mv -f $@.tmp $@
14231423
gofmt -s -w $@
14241424

pkg/sql/lex/all_keywords.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// by the Apache License, Version 2.0, included in the file
99
// licenses/APL.txt.
1010

11-
// +build all-keywords
11+
// +build all_keywords
1212

1313
// all-keywords generates sql/lex/keywords.go from sql.y.
1414
//

0 commit comments

Comments
 (0)