summaryrefslogtreecommitdiff
path: root/plugins/users
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2009-07-31 23:16:59 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-06-26 00:30:13 -0600
commit452a7e70ff8d837a1c2ca26642d6a9b18db41a29 (patch)
tree55fcf50033e551172b73d62b3c878bb6ec7ee137 /plugins/users
parentf684fcc409532b95ad06087b85106616e915cf18 (diff)
command selection rewritten
Diffstat (limited to 'plugins/users')
-rw-r--r--plugins/users/Makefile.in10
1 files changed, 6 insertions, 4 deletions
diff --git a/plugins/users/Makefile.in b/plugins/users/Makefile.in
index 975d884..b6fe534 100644
--- a/plugins/users/Makefile.in
+++ b/plugins/users/Makefile.in
@@ -1,6 +1,6 @@
#!/usr/bin/make -f
name = users
-# version 0.7.1
+ver = 0.7beta
# Copyright (C) 2009 Luke Shumaker
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -52,7 +52,7 @@ $(name) : $(shOutFiles)
# (un)install ######################################################
install : all
- $(RVS) install $(name) $(myoutdir)
+ $(RVS) install $(name)-$(ver) $(myoutdir)
uninstall :
$(RVS) uninstall $(name)
@@ -71,9 +71,11 @@ b := @
# build shell scripts
$(myoutdir)/% : $(mysrcdir)/%.sh
$(MKDIR) $(dir $@)
- $(SED) 's/$bSHELL@/$(subst /,\/,$(SHELL))/g' <$< > $@
+ $(INSTALL_PROGRAM) $< $@
+ $(SED) -i 's/$bSHELL@/$(subst /,\/,$(SHELL))/g' $@
# workaround... idk why it doesn't match `lib/'
$(myoutdir)/lib/% : $(mysrcdir)/lib/%.sh
$(MKDIR) $(dir $@)
- $(SED) 's/$bSHELL@/$(subst /,\/,$(SHELL))/g' <$< > $@
+ $(INSTALL_PROGRAM) $< $@
+ $(SED) -i 's/$bSHELL@/$(subst /,\/,$(SHELL))/g' $@