diff options
author | Petr Mladek <pmladek@suse.cz> | 2011-04-20 16:42:09 +0200 |
---|---|---|
committer | Petr Mladek <pmladek@suse.cz> | 2011-04-20 16:43:09 +0200 |
commit | 6326baaba7534667c95c6cc8aac6287bb140580e (patch) | |
tree | 39496b89bc52d3ae560af06582d552f14640c8b4 | |
parent | 845302e921d8d2c5db702c14d74fda35f16c662d (diff) |
set default install dirname from AC_PACKAGE_NAME
idea by Hanno Meyer-Thurow <h.mth@web.de>
-rwxr-xr-x | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 8cbcd7488..64f88ec4f 100755 --- a/configure.in +++ b/configure.in @@ -7831,7 +7831,7 @@ else fi AC_SUBST(UNIXWRAPPERNAME) -INSTALL_DIRNAME=libreoffice +INSTALL_DIRNAME=`echo AC_PACKAGE_NAME | tr [[:upper:]] [[:lower:]]` AC_MSG_CHECKING([for install dirname]) if test -n "$with_install_dirname" -a "$with_install_dirname" != "no" -a "$with_install_dirname" != "yes" ; then INSTALL_DIRNAME="$with_install_dirname" |