From b8a2b8fdec0c01c2e4372fdf0424dbf5ae1f5edc Mon Sep 17 00:00:00 2001 From: Jay Larson Date: Fri, 9 Sep 2016 14:39:59 -0500 Subject: [PATCH] One more slight mod to the patching section --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4fe3f0a..10c0ed1 100644 --- a/Makefile +++ b/Makefile @@ -43,8 +43,8 @@ $(SRCDIR): $(ARCHIVE) fi $(SRCDIR)/config.log: $(SRCDIR) - @cd $(SRCDIR) && for patch in $(PATCHDIR)/*.patch; do \ - patch --verbose -Np0 -i $$patch; \ + @cd $(SRCDIR) && for patch in `find $(PATCHDIR) -name \*.patch`; do \ + patch --verbose -Np1 -i $$patch; \ done @cd $(SRCDIR); \ ./configure \