aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-03-11 13:14:40 -0400
committerB Stack <bgstack15@gmail.com>2020-03-11 13:14:40 -0400
commitd3c92eb58d61e7a7cb8a66e4f8cd4fcba2d27b6b (patch)
tree15aaaec948f6d03fc91a60b54d86ec3dfa57a13e
parentuse alternatives, and actually run commands (diff)
downloadlogout-manager-d3c92eb58d61e7a7cb8a66e4f8cd4fcba2d27b6b.tar.gz
logout-manager-d3c92eb58d61e7a7cb8a66e4f8cd4fcba2d27b6b.tar.bz2
logout-manager-d3c92eb58d61e7a7cb8a66e4f8cd4fcba2d27b6b.zip
minor fixes
-rw-r--r--debian/logout-manager.conffiles2
-rw-r--r--src/Makefile2
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/logout-manager.conffiles b/debian/logout-manager.conffiles
new file mode 100644
index 0000000..65e8592
--- /dev/null
+++ b/debian/logout-manager.conffiles
@@ -0,0 +1,2 @@
+etc/logout-manager.conf
+etc/default/logout-manager
diff --git a/src/Makefile b/src/Makefile
index 236f079..96607d2 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -57,7 +57,7 @@ list:
deplist:
@if test -z "$(DISTRO)" ; then ${echobin} "Please run \`make deplist\` with DISTRO= one of: `make deplist_opts 2>&1 1>/dev/null | ${xargsbin}`. Aborted." ; exit 1 ; fi
- @${grepbin} -h --exclude='Makefile' --exclude-dir='doc' -A5 -riIE dependencies $(SRCDIR) | ${awkbin} -v 'distro=$(DISTRO)' 'tolower($$0) ~ distro {$$1="";$$2="";print}' | awk 'BEGIN{cmd="${xargsbin} -n1"} $$0 !~ /\(/{print $$0 | cmd ; close(cmd);} $$0 ~ /\(/{print;}' | ${sortbin} | ${uniqbin} | ${sedbin} -r -e 's/$$/$(SEPARATOR)/' | ${xargsbin}
+ @${grepbin} -h --exclude='Makefile' --exclude-dir='doc' -A5 -riIE dependencies $(SRCDIR) | ${awkbin} -v 'distro=$(DISTRO)' 'tolower($$0) ~ distro {$$1="";$$2="";print}' | ${awkbin} 'BEGIN{cmd="${xargsbin} -n1"} $$0 !~ /\(/{print $$0 | cmd ; close(cmd);} $$0 ~ /\(/{print;}' | ${sortbin} | ${uniqbin} | ${sedbin} -r -e 's/$$/$(SEPARATOR)/' | ${xargsbin}
deplist_opts:
@${echobin} "el7" 1>&2
bgstack15