Return-Path: X-Original-To: apmail-subversion-dev-archive@minotaur.apache.org Delivered-To: apmail-subversion-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 80A3BF172 for ; Mon, 25 Mar 2013 00:01:08 +0000 (UTC) Received: (qmail 50053 invoked by uid 500); 25 Mar 2013 00:01:08 -0000 Delivered-To: apmail-subversion-dev-archive@subversion.apache.org Received: (qmail 49968 invoked by uid 500); 25 Mar 2013 00:01:08 -0000 Mailing-List: contact dev-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@subversion.apache.org Received: (qmail 49947 invoked by uid 99); 25 Mar 2013 00:01:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Mar 2013 00:01:07 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of joe.swatosh@gmail.com designates 209.85.212.180 as permitted sender) Received: from [209.85.212.180] (HELO mail-wi0-f180.google.com) (209.85.212.180) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Mar 2013 00:01:03 +0000 Received: by mail-wi0-f180.google.com with SMTP id c10so1431889wiw.13 for ; Sun, 24 Mar 2013 17:00:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=qQKsPzRfYKo+Xik6UMJFGDfXXrZO4dHZViA6IBnUx6Q=; b=m6gaGAgou/oZOwd1nhdczQVjzHI95iRyRyhdusiWxlG1/d7SXWFFhx5xA+Ms+RVqgD xd6pLVEzZv3FGFT7nTGaVntejauk58nJI8Wxc/dmCc+lXkyHt0VQR9RKwNqtXAxqpBxR RQi4KjdMlneRQVDBwDJvLSthqhcRzoM5BsAfWV16gIiPQsEtnIDd0YtQnaG8S5TOaqjJ SCegN6z8csGvPZMRiQrjE2XpwB8xnjY55Psg9AytLIavcQzoRqrjwbsCO5/yF5IkPxjz jlKQ/aAUYBL9HvTxbFfP56Fo5vCqCfDtqXoXlRex5pnk4fJA7Sjecul+OnJEiLOxGmap 1ggw== MIME-Version: 1.0 X-Received: by 10.194.242.163 with SMTP id wr3mr14388777wjc.35.1364169641972; Sun, 24 Mar 2013 17:00:41 -0700 (PDT) Received: by 10.194.155.69 with HTTP; Sun, 24 Mar 2013 17:00:41 -0700 (PDT) Date: Sun, 24 Mar 2013 17:00:41 -0700 Message-ID: Subject: [Patch] Allow creating SWIG build targets without a JDK From: Joe Swatosh To: SVN Dev Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org [[[ Follow up to r1354410 which dropped the JavaHL targets in the absence of a jdk. It appears to contain an copy-paste-o that also removes the swig targets in the absence of a jdk. * build/generator/gen_win.py (get_install_targets): Drop the line the removes the swig targets when there is no jdk. ]]] ------------------------------------------------------------------------ Index: build/generator/gen_win.py =================================================================== --- build/generator/gen_win.py (revision 1460195) +++ build/generator/gen_win.py (working copy) @@ -401,7 +401,6 @@ install_targets = [x for x in install_targets if not (isinstance(x, gen_base.TargetJava) or isinstance(x, gen_base.TargetJavaHeaders) - or isinstance(x, gen_base.TargetSWIGProject) or x.name == '__JAVAHL__' or x.name == '__JAVAHL_TESTS__' or x.name == 'libsvnjavahl')]