summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.cz>2014-01-20 13:28:38 +1100
committerDave Chinner <david@fromorbit.com>2014-01-20 13:28:38 +1100
commit9ced65731e72378c074a683cfda6e924787ffd62 (patch)
treea23eb4d0417234897e8896f325964cc166c89ce3
parent6571cea7eba3e4f73b508af29bf0338b9a73934c (diff)
Makefile: fix minor build warning
Make in the toplevel directory tries to process the 'group' file that existed in the previous file layout $ make sed: can't read group: No such file or directory sed: can't read group: No such file or directory ... Signed-off-by: David Sterba <dsterba@suse.cz> Reviewed-by: Ben Myers <bpm@sgi.com> Signed-off-by: Dave Chinner <david@fromorbit.com>
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a7f6f9d3..30d8747d 100644
--- a/Makefile
+++ b/Makefile
@@ -41,7 +41,6 @@ endif
SRCTAR = $(PKG_NAME)-$(PKG_VERSION).tar.gz
-TESTS = $(shell sed -n -e '/^[0-9][0-9][0-9]*/s/ .*//p' group)
CONFIGURE = configure include/builddefs include/config.h
LSRCFILES = configure configure.ac aclocal.m4 README VERSION
LDIRT = config.log .ltdep .dep config.status config.cache confdefs.h \
@@ -60,7 +59,7 @@ endif
export TESTS_DIR = tests
SUBDIRS = $(LIB_SUBDIRS) $(TOOL_SUBDIRS) $(TESTS_DIR)
-default: include/builddefs $(DMAPI_MAKEFILE) $(TESTS)
+default: include/builddefs $(DMAPI_MAKEFILE)
ifeq ($(HAVE_BUILDDEFS), no)
$(Q)$(MAKE) $(MAKEOPTS) $@
else