debian/bin/genorig.py: Create symlink to tar in "..".

svn path=/dists/trunk/linux/; revision=19888
This commit is contained in:
Ben Hutchings 2013-03-02 16:07:23 +00:00
parent 4ac80f514e
commit 3924ca2a70
1 changed files with 4 additions and 0 deletions

View File

@ -128,6 +128,10 @@ class Main(object):
except OSError:
pass
raise
try:
os.symlink(os.path.join('orig', self.orig_tar), os.path.join('..', self.orig_tar))
except OSError:
pass
if __name__ == '__main__':
from optparse import OptionParser