From 705192f7e8aa2f8471806cac0573f0000a67d0cb Mon Sep 17 00:00:00 2001 From: Jay Larson Date: Wed, 21 Sep 2016 09:52:27 -0500 Subject: [PATCH] Tweaked Makefile to prevent configure from being run during make test --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 2000990..ed9bd0d 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ SNAPHACKS = rm -fv $(ROOT)/usr/share/info/dir && \ include /usr/share/snap/Makefile.snaplinux -$(SRCDIR): $(ARCHIVE) +$(SRCDIR)/configure: $(ARCHIVE) @if [ '$(TYPE)' == 'application/x-bzip2' ]; then \ tar -jxf $(ARCHIVE); \ elif [ '$(TYPE)' == 'application/x-gzip' ]; then \ @@ -43,7 +43,7 @@ $(SRCDIR): $(ARCHIVE) exit 1; \ fi -$(SRCDIR)/config.log: $(SRCDIR) +$(SRCDIR)/config.log: $(SRCDIR)/configure @if [ -f $(PATCHDIR)/*.patch ]; then \ cd $(SRCDIR) && cat $(PATCHDIR)/*.patch|patch --verbose -Np1; \ fi @@ -74,7 +74,7 @@ $(ROOT): $(SRCDIR)/src/cpio test: $(ROOT) @cd $(SRCDIR); \ - make test + make check clean: @rm -rvf $(ROOT) \