From patchwork Mon Oct 17 15:29:35 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 120236 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id C53B5B6F6B for ; Tue, 18 Oct 2011 02:30:22 +1100 (EST) Received: from localhost ([::1]:41228 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RFp8r-0001gC-81 for incoming@patchwork.ozlabs.org; Mon, 17 Oct 2011 11:30:17 -0400 Received: from eggs.gnu.org ([140.186.70.92]:42795) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RFp8P-0000xc-KM for qemu-devel@nongnu.org; Mon, 17 Oct 2011 11:29:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RFp8O-0006Ad-0e for qemu-devel@nongnu.org; Mon, 17 Oct 2011 11:29:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:37152) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RFp8N-00069x-O1 for qemu-devel@nongnu.org; Mon, 17 Oct 2011 11:29:47 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p9HFTig2002515 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 17 Oct 2011 11:29:45 -0400 Received: from localhost (ovpn-113-62.phx2.redhat.com [10.3.113.62]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p9HFThR8018174; Mon, 17 Oct 2011 11:29:44 -0400 From: Luiz Capitulino To: mdroth@linux.vnet.ibm.com Date: Mon, 17 Oct 2011 13:29:35 -0200 Message-Id: <1318865377-3328-3-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1318865377-3328-1-git-send-email-lcapitulino@redhat.com> References: <1318865377-3328-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 209.132.183.28 Cc: aliguori@us.ibm.com, qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH 2/4] qapi-types.py: Don't build paths by hand X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Use os.path.join() instead. Signed-off-by: Luiz Capitulino Reviewed-by: Michael Roth --- scripts/qapi-types.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/qapi-types.py b/scripts/qapi-types.py index 986ff1e..8df4b72 100644 --- a/scripts/qapi-types.py +++ b/scripts/qapi-types.py @@ -177,10 +177,10 @@ if __name__ == '__main__': if o in ("-p", "--prefix"): prefix = a elif o in ("-o", "--output-dir"): - output_dir = a + "/" + output_dir = a - c_file = output_dir + prefix + c_file - h_file = output_dir + prefix + h_file + c_file = os.path.join(output_dir, prefix + c_file) + h_file = os.path.join(output_dir, prefix + h_file) try: os.makedirs(output_dir)