summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzesimir Nowak <qdlacz@gmail.com>2011-09-16 13:59:18 +0200
committerKrzesimir Nowak <qdlacz@gmail.com>2011-09-16 14:03:52 +0200
commit3db44499e1e1ac81a4e4d16f2ef831649fb83f44 (patch)
tree923b736a64d4380eebaa7377c5a2621121d280b6
parent0bb50a28cfbd3ef8b913149090eaeaf0a3072f5f (diff)
downloadmm-common-3db44499e1e1ac81a4e4d16f2ef831649fb83f44.tar.gz
Don't try to run tar by shell.
This was a leftover from removing `missing' script use. `missing' is written in shell so it was possible to run it as `/bin/sh missing'. tar is a binary file and it should be called directly. This fixes skeletonmm tarball creation. * Makefile.am: Removed $(SHELL) from command packing skeletonmm into tarball.
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 0bd8956..6e5ba02 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -121,7 +121,7 @@ download_curl = $(CURL) --compressed --connect-timeout 300 -g -L -m 3600 -R --re
download_wget = $(WGET) -N -nd -T 300 -t 5 -P $(dir $@)
subst_manpage = $(SED) 's|[@]PACKAGE_STRING[@]|$(PACKAGE_STRING)|g;s|[@]docdir[@]|$(docdir)|g'
-srctar_stdout = cd $(top_srcdir) >/dev/null && $(SHELL) $(TAR) chof -
+srctar_stdout = cd $(top_srcdir) >/dev/null && $(TAR) chof -
# If maintainer mode is enabled, always check the remote locations
# of the tag files for updates when building the default target.