You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by al...@apache.org on 2019/02/14 21:50:22 UTC

[kudu] branch master updated: [build-support] updated iwyu-dependent target name

This is an automated email from the ASF dual-hosted git repository.

alexey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git


The following commit(s) were added to refs/heads/master by this push:
     new b289960  [build-support] updated iwyu-dependent target name
b289960 is described below

commit b289960e81d58c377cc9a7c23f2746ecf9eb5057
Author: Alexey Serbin <al...@apache.org>
AuthorDate: Thu Feb 14 12:27:01 2019 -0800

    [build-support] updated iwyu-dependent target name
    
    This is a follow-up to 4e2451dbf18db1faf9545ac1f9663d378b9f5efe.
    
    Change-Id: Icb1750ce71ab4933e536cbd53d4b371412d8ce62
    Reviewed-on: http://gerrit.cloudera.org:8080/12485
    Tested-by: Kudu Jenkins
    Reviewed-by: Adar Dembo <ad...@cloudera.com>
---
 build-support/iwyu.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build-support/iwyu.py b/build-support/iwyu.py
index 6f74c13..e74a112 100755
--- a/build-support/iwyu.py
+++ b/build-support/iwyu.py
@@ -268,9 +268,9 @@ def main(argv):
   # For correct results, IWYU depends on the generated header files.
   logging.info("Ensuring IWYU dependencies are built...")
   if os.path.exists('Makefile'):
-    subprocess.check_call(['make', 'iwyu-generated-headers'])
+    subprocess.check_call(['make', 'generated-headers'])
   elif os.path.exists('build.ninja'):
-    subprocess.check_call(['ninja', 'iwyu-generated-headers'])
+    subprocess.check_call(['ninja', 'generated-headers'])
   else:
     logging.error('No Makefile or build.ninja found in build directory %s',
                   _BUILD_DIR)