|
25 | 25 | CONFIG_PY = "src/test/regress/upgrade/config.py" |
26 | 26 | DISTRIBUTED_SQL_DIR_PATH = "src/backend/distributed/sql" |
27 | 27 | DOWNGRADES_DIR_PATH = f"{DISTRIBUTED_SQL_DIR_PATH}/downgrades" |
28 | | -CONFIGURE_IN = "configure.in" |
| 28 | +CONFIGURE_IN = "configure.ac" |
29 | 29 | CONFIGURE = "configure" |
30 | 30 | CITUS_CONTROL_SEARCH_PATTERN = r"^default_version*" |
31 | 31 |
|
@@ -262,7 +262,7 @@ def prepare_release_branch_for_patch_release(patchReleaseParams: PatchReleasePar |
262 | 262 | run(f"git checkout -b {patchReleaseParams.release_branch_name}") |
263 | 263 | else: |
264 | 264 | checkout_branch(patchReleaseParams.release_branch_name, patchReleaseParams.is_test) |
265 | | - # change version info in configure.in file |
| 265 | + # change version info in configure.ac file |
266 | 266 | update_version_in_configure_in(patchReleaseParams.project_name, patchReleaseParams.configure_in_path, |
267 | 267 | patchReleaseParams.project_version) |
268 | 268 | # execute "auto-conf " |
@@ -295,7 +295,7 @@ def prepare_upcoming_version_branch(upcoming_params: UpcomingVersionBranchParams |
295 | 295 | checkout_branch(upcoming_params.main_branch, upcoming_params.is_test) |
296 | 296 | # create master-update-version-$curtime branch |
297 | 297 | create_and_checkout_branch(upcoming_params.upcoming_version_branch) |
298 | | - # update version info with upcoming version on configure.in |
| 298 | + # update version info with upcoming version on configure.ac |
299 | 299 | update_version_in_configure_in(upcoming_params.project_name, upcoming_params.configure_in_path, |
300 | 300 | upcoming_params.upcoming_devel_version) |
301 | 301 | # update version info with upcoming version on config.py |
@@ -351,7 +351,7 @@ def prepare_release_branch_for_major_release(majorReleaseParams: MajorReleasePar |
351 | 351 | checkout_branch(majorReleaseParams.main_branch, majorReleaseParams.is_test) |
352 | 352 | # create release branch in release-X.Y format |
353 | 353 | create_and_checkout_branch(majorReleaseParams.release_branch_name) |
354 | | - # change version info in configure.in file |
| 354 | + # change version info in configure.ac file |
355 | 355 | update_version_in_configure_in(majorReleaseParams.project_name, majorReleaseParams.configure_in_path, |
356 | 356 | majorReleaseParams.project_version) |
357 | 357 | # execute "autoconf -f" |
|
0 commit comments