From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 44C221381F3 for ; Fri, 11 Oct 2013 17:38:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C95D6E092C; Fri, 11 Oct 2013 17:38:53 +0000 (UTC) Received: from mail-pb0-f47.google.com (mail-pb0-f47.google.com [209.85.160.47]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 46116E092C for ; Fri, 11 Oct 2013 17:38:53 +0000 (UTC) Received: by mail-pb0-f47.google.com with SMTP id rr4so4533658pbb.34 for ; Fri, 11 Oct 2013 10:38:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=0HuyPO17UMNAWpbbwWBce8y5ELi0H8SjfQ1TvLmBMiM=; b=eA1PLlBja7Nrs0C91eGf9U79g//SUMupUrimhWUAjsS9p99rYLyrc/byJ+05NTkMBO zaHjM8WS226pg5bAcJJbOK1w9ZvMwSNG7SxFlGLU5JmXLIz6K7Ze6UiUfdnb8qr+oZQ0 SNXI+8jWatieHu/H/P1TLFpEFvhRC9ZB2kBptPXhqr+SZCWZS7O4HQ9q0TIB+i5+eBvf mbDW1+2VJU4LooDiMwlrN082AwgB68GXGNc8RmzUqgxrAt7WD+Ze/cT84+vPLK0LdS6y YQtiBkMWV1UIWxwUipEK/Q1w6Km2HEU+QjVIPWHnRphtY+tEGQmIvjzUem/QEGMk/p7T 6v4w== X-Received: by 10.66.251.1 with SMTP id zg1mr16220137pac.160.1381513132160; Fri, 11 Oct 2013 10:38:52 -0700 (PDT) Received: from localhost.localdomain (75-92-167-159.war.clearwire-wmx.net. [75.92.167.159]) by mx.google.com with ESMTPSA id gg10sm61128484pbc.46.1969.12.31.16.00.00 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Fri, 11 Oct 2013 10:38:51 -0700 (PDT) From: Dylan Baker To: gentoo-catalyst@lists.gentoo.org Cc: Dylan Baker Subject: [gentoo-catalyst] [PATCH 1/4] catalyst: Specify python2 rather than the generic python Date: Fri, 11 Oct 2013 10:38:24 -0700 Message-Id: <1381513107-17483-1-git-send-email-baker.dylan.c@gmail.com> X-Mailer: git-send-email 1.8.1.5 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: 5e3cdfa8-be08-4fae-a31f-7d126bcb69e2 X-Archives-Hash: 00fc70508a88be864bb06529589002fc This allows catalyst to work regardless of whether a user prefers that usr/bin/python be python 2.x or 3.x. --- catalyst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst b/catalyst index 4550d05..11560fb 100755 --- a/catalyst +++ b/catalyst @@ -1,4 +1,4 @@ -#!/usr/bin/python -OO +#!/usr/bin/python2 -OO # Maintained in full by: # Catalyst Team -- 1.8.1.5