diff options
author | Anatoly Techtonik <techtonik@gmail.com> | 2011-04-12 16:35:58 (GMT) |
---|---|---|
committer | Anatoly Techtonik <techtonik@gmail.com> | 2011-04-12 16:35:58 (GMT) |
commit | 23c711fa0baec00124167f35b4cd89832934e3c8 (patch) | |
tree | 27c769886bb7a4cb476b443ccd5db93f24a4b08e /src | |
parent | d1de4c941d856eaa687eafe4f0537c0d16c6f7aa (diff) | |
download | SCons-23c711fa0baec00124167f35b4cd89832934e3c8.zip SCons-23c711fa0baec00124167f35b4cd89832934e3c8.tar.gz SCons-23c711fa0baec00124167f35b4cd89832934e3c8.tar.bz2 |
scons.py: os.link() is the proper function for hard links
Diffstat (limited to 'src')
-rw-r--r-- | src/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/setup.py b/src/setup.py index 75fb4c9..c6d7b40 100644 --- a/src/setup.py +++ b/src/setup.py @@ -125,7 +125,7 @@ class install(_install): 'version-lib' ] - if hasattr(os, 'symlink'): + if hasattr(os, 'link'): user_options.append( ('hardlink-scons', None, "hard link 'scons' to the version-numbered script, don't make a separate 'scons' copy"), |