Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(206)

Unified Diff: configure.ac

Issue 6659006: flimflam: add support for multiple profiles (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/flimflam.git@master
Patch Set: rebase Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Makefile.am ('k') | doc/manager-api.txt » ('j') | doc/manager-api.txt » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « Makefile.am ('k') | doc/manager-api.txt » ('j') | doc/manager-api.txt » ('J')

Powered by Google App Engine
This is Rietveld 408576698