| Index: configure.ac
|
| diff --git a/configure.ac b/configure.ac
|
| index 4fb6c15f426638d812decc525780c0a2daa46720..97e8322b6c25354d5bc5b5a287262715504ffd17 100644
|
| --- a/configure.ac
|
| +++ b/configure.ac
|
| @@ -375,5 +375,15 @@ AC_ARG_ENABLE(datafiles, AC_HELP_STRING([--disable-datafiles],
|
| [enable_datafiles=${enableval}])
|
| AM_CONDITIONAL(DATAFILES, test "${enable_datafiles}" != "no")
|
|
|
| +AC_ARG_WITH(homedir, AC_HELP_STRING([--with-homedir=PATH],
|
| + [path to user home directory]), [path_homedir=${withval}],
|
| + [path_homedir="/home/%s/user"])
|
| +if (test -z "${path_homedir}"); then
|
| + STORAGE_HOMEDIR="/home/%s/user/flimflam"
|
| +else
|
| + STORAGE_HOMEDIR="${path_homedir}/flimflam"
|
| +fi
|
| +AC_SUBST(STORAGE_HOMEDIR)
|
| +
|
| AC_OUTPUT(Makefile include/version.h src/flimflam.service
|
| scripts/flimflam doc/version.xml flimflam.pc)
|
|
|