configure.ac | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
New commits:
commit 3af85546675a2e61fcfd43ff3ac68e558c2d9dd6
Author: Tor Lillqvist <[email protected]>
AuthorDate: Wed Oct 9 13:20:57 2024 +0300
Commit: Miklos Vajna <[email protected]>
CommitDate: Tue Dec 2 08:38:52 2025 +0100
Add missing double quotes and drop pointless assignment
The first assignment to PRODUCTNAME was immeditately replaced by the
one on the following line.
Change-Id: Icee223cbad3e864362abe8831cd1a4d5592499ab
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194557
Reviewed-by: Michael Stahl <[email protected]>
Tested-by: Jenkins CollaboraOffice <[email protected]>
diff --git a/configure.ac b/configure.ac
index 42535c8432c9..4e83ec170c8b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -504,8 +504,7 @@ if test -n "$with_product_name" -a "$with_product_name" !=
no; then
PRODUCTNAME="$with_product_name"
fi
if test "$enable_release_build" = "" -o "$enable_release_build" = "no"; then
- PRODUCTNAME="${PRODUCTNAME}Dev"
- PRODUCTNAME=AC_PACKAGE_NAME
+ PRODUCTNAME="AC_PACKAGE_NAME"
fi
AC_MSG_RESULT([$PRODUCTNAME])
AC_SUBST(PRODUCTNAME)