One more slight mod to the patching section

This commit is contained in:
2016-09-09 14:39:59 -05:00
parent bd998c35ef
commit b8a2b8fdec

View File

@@ -43,8 +43,8 @@ $(SRCDIR): $(ARCHIVE)
fi fi
$(SRCDIR)/config.log: $(SRCDIR) $(SRCDIR)/config.log: $(SRCDIR)
@cd $(SRCDIR) && for patch in $(PATCHDIR)/*.patch; do \ @cd $(SRCDIR) && for patch in `find $(PATCHDIR) -name \*.patch`; do \
patch --verbose -Np0 -i $$patch; \ patch --verbose -Np1 -i $$patch; \
done done
@cd $(SRCDIR); \ @cd $(SRCDIR); \
./configure \ ./configure \