Skip to content

Commit acbd2e6

Browse files
committed
Fix header ambiguously exported by two targets
Found with: ``` bant lib-headers | awk '{print $1}' | sort | uniq -cd ``` While at it, canonicalize some targets. ``` . <(bant canonicalize ...) ``` Signed-off-by: Henner Zeller <[email protected]>
1 parent 17b05cf commit acbd2e6

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ cc_binary(
142142
deps = [
143143
":openroad_lib",
144144
":openroad_version",
145-
"//:ord",
145+
":ord",
146146
"//src/cut",
147147
"//src/gui",
148148
"//src/sta:opensta_lib",

src/par/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ cc_library(
6060
"@boost.range",
6161
"@boost.tokenizer",
6262
"@boost.utility",
63-
"@or-tools//ortools/linear_solver:linear_solver",
63+
"@or-tools//ortools/linear_solver",
6464
],
6565
)
6666

src/rmp/BUILD

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ cc_library(
5858
],
5959
hdrs = [
6060
"include/rmp/MakeRestructure.h",
61-
"include/rmp/Restructure.h",
6261
],
6362
copts = [
6463
"-Isrc/rmp/src",
@@ -67,11 +66,11 @@ cc_library(
6766
"include",
6867
],
6968
deps = [
69+
":rmp",
7070
"//:ord",
7171
"//src/cut",
7272
"//src/dbSta",
7373
"//src/odb",
74-
"//src/rmp",
7574
"//src/rsz",
7675
"//src/sta:opensta_lib",
7776
"//src/utl",

0 commit comments

Comments
 (0)