This is an automated email from the ASF dual-hosted git repository.
truckman pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/AOO42X by this push:
new efbacfe929 epm is not needed when building archive format.
efbacfe929 is described below
commit efbacfe929d03ea3795d286f15224e8586cb8813
Author: Don Lewis <[email protected]>
AuthorDate: Sat Apr 12 17:13:15 2025 -0700
epm is not needed when building archive format.
(cherry picked from commit e46d221a3bef391035eb3042bd7fa7a848d6c36a)
---
main/configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/main/configure.ac b/main/configure.ac
index 935ab54f92..90dc6282a8 100644
--- a/main/configure.ac
+++ b/main/configure.ac
@@ -3401,9 +3401,9 @@ AC_MSG_CHECKING([whether to enable EPM for packing])
if test "$enable_epm" = "yes"; then
AC_MSG_RESULT([yes])
dnl ===================================================================
- dnl Check for epm - not needed for Windows
+ dnl Check for epm - not needed for Windows or building archive format
dnl ===================================================================
- if test "$_os" != "WINNT"; then
+ if test "$_os" != "WINNT" -a "$with_package_format" != "archive"; then
if test -n "$with_epm"; then
EPM=$with_epm
else