diff options
author | Jacek Antonelli | 2008-08-15 23:45:11 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:11 -0500 |
commit | 215f423cbe18fe9ca14a26caef918d303bad28ff (patch) | |
tree | 0743442b286216cc8e19aa487c26f4e9345ffd64 /linden/scripts/setup-path.py | |
parent | Second Life viewer sources 1.18.3.5-RC (diff) | |
download | meta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.zip meta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.tar.gz meta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.tar.bz2 meta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.tar.xz |
Second Life viewer sources 1.18.4.0-RC
Diffstat (limited to 'linden/scripts/setup-path.py')
-rwxr-xr-x | linden/scripts/setup-path.py | 57 |
1 files changed, 31 insertions, 26 deletions
diff --git a/linden/scripts/setup-path.py b/linden/scripts/setup-path.py index 30048ba..87600e3 100755 --- a/linden/scripts/setup-path.py +++ b/linden/scripts/setup-path.py | |||
@@ -1,30 +1,35 @@ | |||
1 | #!/usr/bin/python | 1 | #!/usr/bin/python |
2 | # @file setup-path.py | 2 | """\ |
3 | # @brief Get the python library directory in the path, so we don't have | 3 | @file setup-path.py |
4 | # to screw with PYTHONPATH or symbolic links. | 4 | @brief Get the python library directory in the path, so we don't have |
5 | # | 5 | to screw with PYTHONPATH or symbolic links. |
6 | # Copyright (c) 2007-2007, Linden Research, Inc. | 6 | |
7 | # | 7 | $LicenseInfo:firstyear=2007&license=viewergpl$ |
8 | # Second Life Viewer Source Code | 8 | |
9 | # The source code in this file ("Source Code") is provided by Linden Lab | 9 | Copyright (c) 2007, Linden Research, Inc. |
10 | # to you under the terms of the GNU General Public License, version 2.0 | 10 | |
11 | # ("GPL"), unless you have obtained a separate licensing agreement | 11 | Second Life Viewer Source Code |
12 | # ("Other License"), formally executed by you and Linden Lab. Terms of | 12 | The source code in this file ("Source Code") is provided by Linden Lab |
13 | # the GPL can be found in doc/GPL-license.txt in this distribution, or | 13 | to you under the terms of the GNU General Public License, version 2.0 |
14 | # online at http://secondlife.com/developers/opensource/gplv2 | 14 | ("GPL"), unless you have obtained a separate licensing agreement |
15 | # | 15 | ("Other License"), formally executed by you and Linden Lab. Terms of |
16 | # There are special exceptions to the terms and conditions of the GPL as | 16 | the GPL can be found in doc/GPL-license.txt in this distribution, or |
17 | # it is applied to this Source Code. View the full text of the exception | 17 | online at http://secondlife.com/developers/opensource/gplv2 |
18 | # in the file doc/FLOSS-exception.txt in this software distribution, or | 18 | |
19 | # online at http://secondlife.com/developers/opensource/flossexception | 19 | There are special exceptions to the terms and conditions of the GPL as |
20 | # | 20 | it is applied to this Source Code. View the full text of the exception |
21 | # By copying, modifying or distributing this software, you acknowledge | 21 | in the file doc/FLOSS-exception.txt in this software distribution, or |
22 | # that you have read and understood your obligations described above, | 22 | online at http://secondlife.com/developers/opensource/flossexception |
23 | # and agree to abide by those obligations. | 23 | |
24 | # | 24 | By copying, modifying or distributing this software, you acknowledge |
25 | # ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO | 25 | that you have read and understood your obligations described above, |
26 | # WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, | 26 | and agree to abide by those obligations. |
27 | # COMPLETENESS OR PERFORMANCE. | 27 | |
28 | ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO | ||
29 | WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, | ||
30 | COMPLETENESS OR PERFORMANCE. | ||
31 | $/LicenseInfo$ | ||
32 | """ | ||
28 | 33 | ||
29 | import sys | 34 | import sys |
30 | from os.path import realpath, dirname, join | 35 | from os.path import realpath, dirname, join |