diff options
Diffstat (limited to 'plugins/users')
-rw-r--r-- | plugins/users/Makefile.in | 10 |
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' $@ |