[mm-common] Remove pointless quotes from build commands
- From: Daniel Elstner <daniel src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [mm-common] Remove pointless quotes from build commands
- Date: Fri, 18 Sep 2009 07:22:48 +0000 (UTC)
commit e3c12fd65b65eb26003f93be52174ae4d17a9d27
Author: Daniel Elstner <danielk openismus com>
Date: Fri Sep 18 09:15:41 2009 +0200
Remove pointless quotes from build commands
* Makefile.am: Remove single quotes around variable substitutions
where all possible values are known to not contain meta-characters
or whitespace.
Makefile.am | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/Makefile.am b/Makefile.am
index 88669a7..c2c7bf4 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -108,8 +108,8 @@ libstdcxx_tag_url = http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/libst
# Commands for downloading a target from a remote location, taking care
# not to download a file again if its time stamp has not changed.
download_curl = $(CURL) --compressed --connect-timeout 300 -g -L -m 3600 -R --retry 5 \
- $(if $(wildcard $@),-z '$@') -o '$@'
-download_wget = $(WGET) -N -nd -T 300 -t 5 -P '$(dir $@)'
+ $(if $(wildcard $@),-z $@) -o $@
+download_wget = $(WGET) -N -nd -T 300 -t 5 -P $(dir $@)
subst_manpage = $(SED) 's|[ ]PACKAGE_STRING[@]|$(PACKAGE_STRING)|g;s|[ ]docdir[@]|$(docdir)|g'
@@ -129,7 +129,7 @@ endif
# Download the libstdc++ tag file from the GCC website.
doctags/libstdc++.tag:
$(if $(CURL),$(download_curl) '$(libstdcxx_tag_url)',$(if\
- $(WGET),$(download_wget) '$(libstdcxx_tag_url)',test -f '$@'))
+ $(WGET),$(download_wget) '$(libstdcxx_tag_url)',test -f $@))
# Build the mm-common-prepare(1) manual page.
util/mm-common-prepare.1: $(srcdir)/util/mm-common-prepare.1.in Makefile
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]