This is an automated email from the ASF dual-hosted git repository.
truckman pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/trunk by this push:
new e46d221a3b epm is not needed when building archive format.
e46d221a3b is described below
commit e46d221a3bef391035eb3042bd7fa7a848d6c36a
Author: Don Lewis <[email protected]>
AuthorDate: Sat Apr 12 17:13:15 2025 -0700
epm is not needed when building archive format.
---
main/configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/main/configure.ac b/main/configure.ac
index 134000a5f0..781710a812 100644
--- a/main/configure.ac
+++ b/main/configure.ac
@@ -3415,9 +3415,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