shithub: opusfile

Download patch

ref: ae7cc8bf03d6f273cd5514a05c8840bf11681638
parent: 0f028d7438d225eadd60658a5de14a57ac5b97af
author: Ralph Giles <giles@mozilla.com>
date: Mon Oct 1 05:09:36 EDT 2012

Use input redirect instead of explicit cat.

Saves an indent stop. Thanks to Tim for the suggestion.

--- a/doc/Makefile
+++ b/doc/Makefile
@@ -20,7 +20,7 @@
 # run autoconf-like replacements to finalize our config
 GIT_VERSION := $(shell /bin/sh git-version.sh)
 Doxyfile: Doxyfile.in Makefile
-	cat $< | sed -e 's/@PACKAGE@/opusfile/' \
-		     -e 's/@VERSION@/$(GIT_VERSION)/' \
-		     -e 's/@top_srcdir@/../' \
-	       > $@
+	sed -e 's/@PACKAGE@/opusfile/' \
+	    -e 's/@VERSION@/$(GIT_VERSION)/' \
+	    -e 's/@top_srcdir@/../' \
+	  < $< > $@