Skip to content

Commit

Permalink
fix: allow PHP builds to occur without iconv dependency (#3154)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwsupplee committed Apr 17, 2020
1 parent 1f91fbb commit dcd5022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/php_gapic_repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ exports_files(glob(include = ["bin/*", "lib/**"], exclude_directories = 0))
)
_execute_and_check_result(
ctx,
["./configure", "--enable-static", "--without-pear", "--prefix=%s" % root_path.realpath],
["./configure", "--enable-static", "--without-pear", "--without-iconv", "--prefix=%s" % root_path.realpath],
working_directory = srcs_dir,
quiet = False,
)
Expand Down

0 comments on commit dcd5022

Please sign in to comment.