Kaydet (Commit) 1a65a1b4 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Set OOO_VENDOR to the login name as fallback

If OOO_VENDOR is empty you get annoying warnings from the Windows
Resource Compiler at line 55 in solenv/inc/shlinfo.rc.
üst 8e43393c
...@@ -11866,7 +11866,17 @@ AC_SUBST(EXTRA_BUILDID) ...@@ -11866,7 +11866,17 @@ AC_SUBST(EXTRA_BUILDID)
OOO_VENDOR= OOO_VENDOR=
AC_MSG_CHECKING([for vendor]) AC_MSG_CHECKING([for vendor])
if test -z "$with_vendor" -o "$with_vendor" = "no"; then if test -z "$with_vendor" -o "$with_vendor" = "no"; then
AC_MSG_RESULT([not set]) OOO_VENDOR="$USERNAME"
if test -z "$OOO_VENDOR"; then
OOO_VENDOR="$USER"
fi
if test -z "$OOO_VENDOR"; then
OOO_VENDOR="`id -u -n`"
fi
AC_MSG_RESULT([not set, using $OOO_VENDOR])
else else
OOO_VENDOR="$with_vendor" OOO_VENDOR="$with_vendor"
AC_MSG_RESULT([$OOO_VENDOR]) AC_MSG_RESULT([$OOO_VENDOR])
......
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