|
From: <kin...@us...> - 2025-08-21 05:55:25
|
Revision: 7315
http://sourceforge.net/p/teem/code/7315
Author: kindlmann
Date: 2025-08-21 05:55:23 +0000 (Thu, 21 Aug 2025)
Log Message:
-----------
for TeemV2 the src/arch subdir has been renamed src/built and TEEM_ARCH is no longer used
Modified Paths:
--------------
teem/trunk/src/_util/scan-symbols.py
Modified: teem/trunk/src/_util/scan-symbols.py
===================================================================
--- teem/trunk/src/_util/scan-symbols.py 2025-08-21 05:54:59 UTC (rev 7314)
+++ teem/trunk/src/_util/scan-symbols.py 2025-08-21 05:55:23 UTC (rev 7315)
@@ -735,12 +735,9 @@
raise Exception(f'Need {tPath} to be dir with "arch" and "src" subdirs')
if not os.path.isdir(f'{tPath}/src/{lib}'):
raise Exception(f'Do not see library "{lib}" subdir in "src" subdir')
- if not 'TEEM_ARCH' in os.environ:
- raise Exception(f'Environment variable "TEEM_ARCH" not set')
- archEV = os.environ['TEEM_ARCH']
- archDir = f'{tPath}/arch/{archEV}'
+ archDir = f'{tPath}/built'
if not os.path.isdir(archDir):
- raise Exception(f'Do not see "{archDir}" subdir for TEEM_ARCH "{archEV}"')
+ raise Exception(f'Do not see "{archDir}" subdir')
libDir = f'{tPath}/src/{lib}'
if not os.path.isdir(libDir):
raise Exception(f'Do not see "{libDir}" subdir for lib "{lib}"')
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|