|
From: <kin...@us...> - 2025-08-21 05:55:01
|
Revision: 7314
http://sourceforge.net/p/teem/code/7314
Author: kindlmann
Date: 2025-08-21 05:54:59 +0000 (Thu, 21 Aug 2025)
Log Message:
-----------
for TeemV2 the src/arch subdir has been renamed src/built
Modified Paths:
--------------
teem/trunk/src/_util/gen_biffdata.py
Modified: teem/trunk/src/_util/gen_biffdata.py
===================================================================
--- teem/trunk/src/_util/gen_biffdata.py 2025-08-21 04:06:45 UTC (rev 7313)
+++ teem/trunk/src/_util/gen_biffdata.py 2025-08-21 05:54:59 UTC (rev 7314)
@@ -250,7 +250,7 @@
help='output directory in which to put per-library .csv files',
)
parser.add_argument(
- 'teem_source', help='path of Teem source checkout with "src" and "arch" subdirs'
+ 'teem_source', help='path of Teem source checkout with "src" and "built" subdirs'
)
# we always do all the libraries (that might use biff)
# regardless of "experimental"
@@ -264,10 +264,10 @@
teemsrc = args.teem_source
if not (
os.path.isdir(teemsrc)
- and os.path.isdir(f'{teemsrc}/arch')
+ and os.path.isdir(f'{teemsrc}/built')
and os.path.isdir(f'{teemsrc}/src')
):
- raise Exception(f'Need Teem source {teemsrc} to be dir with "arch" and "src" subdirs')
+ raise Exception(f'Need Teem source {teemsrc} to be dir with "src" and "built" subdirs')
return args
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|