[mm-common] Don't try to run tar by shell.
- From: Krzesimir Nowak <krnowak src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mm-common] Don't try to run tar by shell.
- Date: Fri, 16 Sep 2011 12:04:43 +0000 (UTC)
commit 3db44499e1e1ac81a4e4d16f2ef831649fb83f44
Author: Krzesimir Nowak <qdlacz gmail com>
Date: Fri Sep 16 13:59:18 2011 +0200
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.
Makefile.am | 2 +-
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.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]