Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Apitzsch <git@apitzsch.eu>2017-07-20 01:43:06 +0300
committerAndré Apitzsch <git@apitzsch.eu>2017-09-22 20:12:26 +0300
commit624bee755c7f59a99ba05d888fe9d6fc2e91f852 (patch)
tree1d9a7a093b08574f0963df0a0077139b4fdd4a4d /scripts/gajim.in
parent3ba58716d038faa9a2ae96179c1cb05f15dbe004 (diff)
fix file lookup location and other issues
Diffstat (limited to 'scripts/gajim.in')
-rw-r--r--scripts/gajim.in34
1 files changed, 0 insertions, 34 deletions
diff --git a/scripts/gajim.in b/scripts/gajim.in
deleted file mode 100644
index 187c59b7c..000000000
--- a/scripts/gajim.in
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/usr/bin/python3 -OO
-##
-## Copyright (C) 2005 Yann Le Boulanger <asterix AT lagaule.org>
-## Copyright (C) 2006 Dimitur Kirov <dkirov AT gmail.com>
-## Stefan Bethge <stefan AT lanpartei.de>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
-##
-## This file is part of Gajim.
-##
-## Gajim is free software; you can redistribute it and/or modify
-## it under the terms of the GNU General Public License as published
-## by the Free Software Foundation; version 3 only.
-##
-## Gajim is distributed in the hope that it will be useful,
-## but WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-## GNU General Public License for more details.
-##
-## You should have received a copy of the GNU General Public License
-## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
-##
-
-import os
-import sys
-
-if sys.platform != 'win32':
- if os.geteuid() == 0:
- sys.exit("You must not launch gajim as root, it is insecure.")
-
-sys.path.append("@PY_SITEDIR@")
-
-import gajim.gajim as g
-
-g.GajimApplication().run(sys.argv)