From a48afe245c03d5a02ccd9c1ecde6f2567160febb Mon Sep 17 00:00:00 2001 From: Jay Larson Date: Thu, 3 Nov 2016 13:21:48 -0500 Subject: [PATCH] Moved usr/bin/passwd to bin/passwd --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 8b3d384..078437c 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ URL = http://pkg-shadow.alioth.debian.org/ DESC = This package includes the programs necessary to convert traditional \ V7 UNIX password files to the SVR4 shadow password format and additional \ tools to work with shadow passwords. -SNAPVER = sr3 +SNAPVER = sr4 ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1) TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n') @@ -63,9 +63,8 @@ $(ROOT): $(SRCDIR)/src/vipw mkdir -v $(ROOT); \ fi - @cd $(SRCDIR) && make install DESTDIR=$(ROOT) - - @$(SNAPHACKS) + @cd $(SRCDIR) && make install DESTDIR=$(ROOT) && \ + mv $(ROOT)/usr/bin/passwd $(ROOT)/bin/passwd clean: @rm -rvf $(ROOT) \