Skip to content

Commit

Permalink
Fix lint & install pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mishazharov committed Jan 1, 2024
1 parent 19fd88d commit f7eb57e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions foreign_cc/configure.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -195,13 +195,6 @@ def _attrs():
"configure_prefix": attr.string(
doc = "A prefix for the call to the `configure_command`.",
),
"install_prefix": attr.string(
doc = (
"Install prefix, i.e. relative path to where to install the result of the build. " +
"Passed to the 'configure' script with the flag specified by prefix_flag."
),
mandatory = False,
),
"experimental_absolute_install_prefix": attr.bool(
doc = (
"Allows the install_prefix to be an absolute path, and relies on DESTDIR to place" +
Expand All @@ -210,6 +203,13 @@ def _attrs():
mandatory = False,
default = False,
),
"install_prefix": attr.string(
doc = (
"Install prefix, i.e. relative path to where to install the result of the build. " +
"Passed to the 'configure' script with the flag specified by prefix_flag."
),
mandatory = False,
),
"prefix_flag": attr.string(
doc = (
"The flag to specify the install directory prefix with."
Expand Down

0 comments on commit f7eb57e

Please sign in to comment.