Ver código fonte

gen_build_files.sh: simplify "print everything up to INSERT line" part

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Denys Vlasenko 12 anos atrás
pai
commit
4ea37d62c2
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      scripts/gen_build_files.sh

+ 2 - 2
scripts/gen_build_files.sh

@@ -27,11 +27,11 @@ generate()
 		# rules re handling of "\n" in echo params.
 		printf "%s\n" "${header}"
 		# print everything up to INSERT line
-		sed -n '/^INSERT$/q;1,/^INSERT$/p' "${src}"
+		sed -n '/^INSERT$/ q; p' "${src}"
 		# copy stdin to stdout
 		cat
 		# print everything after INSERT line
-		sed -n '/^INSERT$/{:l;n;p;bl}' "${src}"
+		sed -n '/^INSERT$/ { :l; n; p; bl }' "${src}"
 	} >"${dst}.tmp"
 	if ! cmp -s "${dst}" "${dst}.tmp"; then
 		gen "${dst}"