Don't error during sdist if config-host.mak doesn't exist (#846)

This commit is contained in:
Andrew Dutcher 2017-05-30 20:36:33 -07:00 committed by Nguyen Anh Quynh
parent 6d8031eca4
commit 744c34261f
1 changed files with 6 additions and 2 deletions

View File

@ -92,8 +92,12 @@ def copy_sources():
shutil.copytree(os.path.join(ROOT_DIR, '../../include'), os.path.join(SRC_DIR, 'include/'))
# make -> configure -> clean -> clean tests fails unless tests is present
shutil.copytree(os.path.join(ROOT_DIR, '../../tests'), os.path.join(SRC_DIR, 'tests/'))
# remove site-specific configuration file
os.remove(os.path.join(SRC_DIR, 'qemu/config-host.mak'))
try:
# remove site-specific configuration file
# might not exist
os.remove(os.path.join(SRC_DIR, 'qemu/config-host.mak'))
except OSError:
pass
src.extend(glob.glob(os.path.join(ROOT_DIR, "../../*.[ch]")))
src.extend(glob.glob(os.path.join(ROOT_DIR, "../../*.mk")))