25 lines
636 B
Diff
25 lines
636 B
Diff
From d36d90fd0366b84c2e466963c49ad4b48ca740cb Mon Sep 17 00:00:00 2001
|
|
From: Ryan Lortie <desrt@desrt.ca>
|
|
Date: Sat, 15 Mar 2014 11:40:10 -0400
|
|
Subject: [PATCH 08/12] ontology2code: don't hardcode python path
|
|
|
|
Use the typical /usr/bin/env trick to find python.
|
|
|
|
https://bugs.freedesktop.org/show_bug.cgi?id=73837
|
|
---
|
|
data/ontology2code | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/data/ontology2code b/data/ontology2code
|
|
index 988e711..b8efbfd 100755
|
|
--- a/data/ontology2code
|
|
+++ b/data/ontology2code
|
|
@@ -1,4 +1,4 @@
|
|
-#! /usr/bin/python
|
|
+#! /usr/bin/env python
|
|
# -.- coding: utf-8 -.-
|
|
|
|
# Zeitgeist
|
|
--
|
|
2.0.4
|
|
|