1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-11-10 06:46:15 +01:00

build: fix finding of built packages in the end of the build

This commit is contained in:
Dr. Peter Poeml 2006-09-15 16:17:49 +00:00
parent 41c2524691
commit 46b12c1df1

View File

@ -360,7 +360,7 @@ def main(argv):
pacdirlink = os.path.join(config['build-root'], '.build.packages')
if os.path.exists(pacdirlink):
pacdirlink = os.readlink(pacdirlink)
pacdir = os.path.join(config['build-root'] + pacdirlink)
pacdir = os.path.join(config['build-root'], pacdirlink)
if os.path.exists(pacdir):
(s_built, b_built) = get_built_files(pacdir, bi.pacsuffix)