Merge pull request #2981 from caisq/r0.9-3

Update build file to fix #2703
This commit is contained in:
Martin Wicke 2016-06-21 14:36:21 -07:00 committed by GitHub
commit 25023dffcf

View File

@ -15,6 +15,7 @@ genrule(
name = "python_check",
srcs = [
"python_config.sh",
"configure_files"
],
outs = [
"python_checked",
@ -22,3 +23,10 @@ genrule(
cmd = "OUTPUTDIR=\"$(@D)/\"; $(location :python_config.sh) --check && touch $$OUTPUTDIR/python_checked",
local = 1,
)
filegroup(
name = "configure_files",
data = glob([
"*",
])
)