Kaydet (Commit) 55b310e7 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Use printf instead of echo, just in case

...$PRODUCTNAME happens to be -n (which is notoriously problematic with various
versions of echo).

Change-Id: I09dfb562689138aa0135982725bf2c254ce06e59
Reviewed-on: https://gerrit.libreoffice.org/50104Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
üst e07d741b
...@@ -168,7 +168,7 @@ if test "$enable_release_build" = "" -o "$enable_release_build" = "no"; then ...@@ -168,7 +168,7 @@ if test "$enable_release_build" = "" -o "$enable_release_build" = "no"; then
fi fi
AC_MSG_RESULT([$PRODUCTNAME]) AC_MSG_RESULT([$PRODUCTNAME])
AC_SUBST(PRODUCTNAME) AC_SUBST(PRODUCTNAME)
PRODUCTNAME_WITHOUT_SPACES=$(echo "$PRODUCTNAME" | sed 's/ //g') PRODUCTNAME_WITHOUT_SPACES=$(printf %s "$PRODUCTNAME" | sed 's/ //g')
AC_SUBST(PRODUCTNAME_WITHOUT_SPACES) AC_SUBST(PRODUCTNAME_WITHOUT_SPACES)
dnl =================================================================== dnl ===================================================================
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment