From 83939b7c57ab34f43c8b505be1026cb40f214733 Mon Sep 17 00:00:00 2001 From: Jay Larson Date: Thu, 6 Apr 2017 13:34:44 -0500 Subject: [PATCH] The following changes were made to Makefile: * corrected dependencies * removed unneeded debug output --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 44a23e0..d0a0ef1 100644 --- a/Makefile +++ b/Makefile @@ -8,14 +8,14 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -DEPENDS = acl,attr,glibc +DEPENDS = glibc,libacl,libattr ARCH = x86_64 URL = http://pkg-shadow.alioth.debian.org/ BRIEF = Shadow password utilities 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 = 5 +SNAPVER = 6 ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1) TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n') @@ -43,7 +43,6 @@ $(SRCDIR)/configure: $(ARCHIVE) $(SRCDIR)/config.log: $(SRCDIR)/configure @cd $(SRCDIR) && \ for patch in `find $(PATCHDIR) -name \*.patch|sort`; do \ - echo "WTF: $$patch"; \ patch --verbose -Np1 -i $$patch; \ done @cd $(SRCDIR); \