From 07ad008f3d46bf05a9369b4a1f90f3bba5e072c0 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Fri, 21 Jul 2023 18:52:32 +0000 Subject: [PATCH] spec fixes for the big merge --- src/gam.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gam.spec b/src/gam.spec index c50680f9..7d1e97b3 100644 --- a/src/gam.spec +++ b/src/gam.spec @@ -5,7 +5,7 @@ from sys import platform from PyInstaller.utils.hooks import copy_metadata -from gam.var import GAM_VER_LIBS +from gam.gamlib.glverlibs import GAM_VER_LIBS datas = [] for pkg in GAM_VER_LIBS: @@ -13,7 +13,7 @@ for pkg in GAM_VER_LIBS: datas += [('cbcm-v1.1beta1.json', '.')] datas += [('contactdelegation-v1.json', '.')] datas += [('admin-directory_v1.1beta1.json', '.')] -datas += [('roots.pem', '.')] +datas += [('cacerts.pem', '.')] hiddenimports = [ 'gam.auth.yubikey', ] @@ -61,7 +61,7 @@ disable_windowed_traceback = False argv_emulation = False codesign_identity = None entitlements_file = None -if getenv('PYINSTALLER_BUILD_ONEFILE') == 'yes': +if not getenv('PYINSTALLER_BUILD_ONEDIR') == 'yes': # Build one file exe = EXE( pyz,