summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@igalia.com>2018-04-02 17:12:10 -0500
committerMichael Catanzaro <mcatanzaro@igalia.com>2018-04-02 17:12:10 -0500
commitd51759095debeb7878290bcc5ed73f88e955ec69 (patch)
tree4020ddc99794107ac1a4ef20507ee4a644381bd0
parentb430a6aa3d620f894e63a482ed6570eb70239d7c (diff)
downloadgnome-initial-setup-d51759095debeb7878290bcc5ed73f88e955ec69.tar.gz
Move default location of vendor.conf file
We'll put it under /usr/share, since rpm-ostree drops packaged files under /var, and we want this installed for Atomic Workstation. Some distros like Endless actually do want this file outside the OSTree. They can use --with-vendor-conf-file to change the location, as Endless already does.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index ce17c55..fe0b043 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,7 +25,7 @@ AC_ARG_WITH(vendor-conf-file,
if ! test -z "$with_vendor_conf_file"; then
VENDOR_CONF_FILE=$with_vendor_conf_file
else
- VENDOR_CONF_FILE=${localstatedir}/lib/gnome-initial-setup/vendor.conf
+ VENDOR_CONF_FILE=${datadir}/gnome-initial-setup/vendor.conf
fi
AC_SUBST(VENDOR_CONF_FILE)