diff options
| author | metalefty <meta@vmeta.jp> | 2018-05-12 12:28:57 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-12 12:28:57 +0900 |
| commit | a1576ccbf736fa862885719856e77e9ceafb266a (patch) | |
| tree | 8ba4c14143604e08b5459d2fe12c6e6e6f51a991 | |
| parent | 0f898203519d9bdfa1fb152cf3b50795e38793fc (diff) | |
| parent | 9d8816b41b4c3a7eb61a0e4fbbf058c67af07a4e (diff) | |
| download | xrdp-proprietary-a1576ccbf736fa862885719856e77e9ceafb266a.tar.gz xrdp-proprietary-a1576ccbf736fa862885719856e77e9ceafb266a.zip | |
Merge pull request #1126 from metalefty/strict-locations
configure: set default value for enable_strict_locations
| -rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6abaa492..5bd0eb92 100644 --- a/configure.ac +++ b/configure.ac @@ -328,7 +328,8 @@ AC_SUBST([moduledir], '${libdir}/xrdp') AC_ARG_ENABLE([strict-locations], [AS_HELP_STRING([--enable-strict-locations], [Use standard Autoconf install directories unless overridden - (default: use /etc and /var)])]) + (default: use /etc and /var)])], + [], [enable_strict_locations=no]) if test "x$enable_strict_locations" != "xyes"; then sysconfdir="/etc"; |
