blob: aacee0b5df3aa8f2ac282a40476ed0de70951005 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- zeitgeist-0.8.2/configure~ 2011-10-29 10:11:50.009654352 +0000
+++ zeitgeist-0.8.2/configure 2011-10-29 10:08:55.204860261 +0000
@@ -5612,7 +5612,7 @@
# check for python-rdflib
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for python-rdflib" >&5
$as_echo_n "checking for python-rdflib... " >&6; }
-echo "import rdflib" | python - 2>/dev/null
+echo "import rdflib" | $PYTHON - 2>/dev/null
if test $? -ne 0 ; then
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
--- zeitgeist-0.8.2/configure.ac~ 2011-10-29 10:09:01.078242642 +0000
+++ zeitgeist-0.8.2/configure.ac 2011-10-29 10:09:20.901741533 +0000
@@ -39,7 +39,7 @@
# check for python-rdflib
AC_MSG_CHECKING([for python-rdflib])
-echo "import rdflib" | python - 2>/dev/null
+echo "import rdflib" | $PYTHON - 2>/dev/null
if test $? -ne 0 ; then
AC_MSG_FAILURE([failed. Please install the python-rdflib package.])
else
|