|
From: <di...@us...> - 2008-02-24 16:53:25
|
Revision: 576
http://safekeep.svn.sourceforge.net/safekeep/?rev=576&view=rev
Author: dimi
Date: 2008-02-24 08:53:23 -0800 (Sun, 24 Feb 2008)
Log Message:
-----------
More portable way of invoking python, as suggested
by Igor Klingen. This fixes it for FreeBSD.
Modified Paths:
--------------
safekeep/trunk/TODO
safekeep/trunk/safekeep
Modified: safekeep/trunk/TODO
===================================================================
--- safekeep/trunk/TODO 2008-02-24 16:49:47 UTC (rev 575)
+++ safekeep/trunk/TODO 2008-02-24 16:53:23 UTC (rev 576)
@@ -7,18 +7,6 @@
* Clarify snapshot usage in docs
* local backup to bypass ssh
-When I tried to run safekeep under FreeBSD I got an error: "bad interpreter".
-It was because the safekeep magic line is
-#!/usr/bin/python
-and in FreeBSD the python is located in the /usr/local/bin directory.
-
-When I chaged this line to (see python tutorial, 2.2.2):
-#!/usr/bin/env python
-the safekeep began to run w/o errors.
-
-More thanks,
-Igor Klingen
-
Feedback from users:
* Øyvind Skaar <os...@op...>: FreeBSD have snapshot capabilities
- http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/snapshots.html
Modified: safekeep/trunk/safekeep
===================================================================
--- safekeep/trunk/safekeep 2008-02-24 16:49:47 UTC (rev 575)
+++ safekeep/trunk/safekeep 2008-02-24 16:53:23 UTC (rev 576)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
# Copyright (C) 2006-2007 Lattica, Inc.
#
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|