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 \