From fb222ce57fec101635418b14e2dc72e41c901de3 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Sat, 29 Dec 2007 04:04:08 +0000 Subject: [PATCH] remove no-longer needed freebsd fix --- scripts/deluge | 7 ------- 1 file changed, 7 deletions(-) diff --git a/scripts/deluge b/scripts/deluge index 92a076163..962879d54 100755 --- a/scripts/deluge +++ b/scripts/deluge @@ -62,13 +62,6 @@ if not deluge.common.windows_check(): os.environ["LD_LIBRARY_PATH"] = "/usr/lib/firefox" os.system("/usr/bin/deluge %s &" % arguments) raise SystemExit - elif platform.system() == "FreeBSD": - if os.environ.get("MOZILLA_FIVE_HOME") != "/usr/local/lib/firefox": - print "found and fixing freebsd..." - os.environ["MOZILLA_FIVE_HOME"] = "/usr/local/lib/firefox" - os.environ["LD_LIBRARY_PATH"] = "/usr/local/lib/firefox" - os.system("/usr/local/bin/deluge %s &" % arguments) - raise SystemExit parser = OptionParser(usage="%prog [options] [torrents to add]", version=deluge.common.PROGRAM_VERSION)