diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-09-02 17:28:30 -0400 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-09-11 01:43:48 +0200 |
commit | b51fc639f01ee6194af3e7e944a79accce474fe1 (patch) | |
tree | 66eecc6fd27a771a9d85cd79c5e05490de88df76 /Makefile.am | |
parent | 742a862bb803641b78a40f6b498486397a321294 (diff) |
build-sys: perform autodetection of quota-tools binaries
Use AC_PATH_PROG to try and locate the quotaon and quotacheck binaries,
falling back on hardcoded defaults when they can't be found.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 135d9f8ab1..730db1d5a8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -382,6 +382,7 @@ EXTRA_DIST += \ units/debug-shell.service.in \ units/systemd-hibernate.service.in \ units/systemd-suspend.service.in \ + units/quotaon.service.in \ introspect.awk \ man/custom-html.xsl @@ -2794,6 +2795,9 @@ endif EXTRA_DIST += \ units/systemd-quotacheck.service.in +nodist_systemunit_DATA += \ + units/quotaon.service + # ------------------------------------------------------------------------------ if ENABLE_RANDOMSEED rootlibexec_PROGRAMS += \ @@ -3427,6 +3431,8 @@ SED_PROCESS = \ -e 's,@rootprefix\@,$(rootprefix),g' \ -e 's,@udevlibexecdir\@,$(udevlibexecdir),g' \ -e 's,@sushell\@,$(sushell),g' \ + -e 's,@QUOTAON\@,$(QUOTAON),g' \ + -e 's,@QUOTACHECK\@,$(QUOTACHECK),g' \ < $< > $@ units/%: units/%.in Makefile |