c726445
From b5937f85fb78a141575a2c60d655373b4f1be099 Mon Sep 17 00:00:00 2001
c726445
From: Todd Zullinger <tmz@pobox.com>
c726445
Date: Wed, 28 Jan 2009 01:10:06 -0500
c726445
Subject: [PATCH 1/3] cuetag.sh: Fix metaflac options for flac >= 1.1.3
c726445
c726445
The --remove-vc-all and --import-vc options were removed in flac-1.1.3
c726445
(27-Nov-2006).  They were deprecated since flac-1.1.1 (01-Oct-2004).
c726445
Use the options which replaced them, -remove-all-tags and
c726445
--import-tags-from, respectively.
c726445
---
c726445
 src/tools/cuetag.sh |    3 +--
c726445
 1 files changed, 1 insertions(+), 2 deletions(-)
c726445
c726445
diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh
c726445
index 73f4660..809be82 100755
c726445
--- a/src/tools/cuetag.sh
c726445
+++ b/src/tools/cuetag.sh
c726445
@@ -28,8 +28,7 @@ usage()
c726445
 vorbis()
c726445
 {
c726445
 	# FLAC tagging
c726445
-	# --remove-vc-all overwrites existing comments
c726445
-	METAFLAC="metaflac --remove-vc-all --import-vc-from=-"
c726445
+	METAFLAC="metaflac --remove-all-tags --import-tags-from=-"
c726445
 
c726445
 	# Ogg Vorbis tagging
c726445
 	# -w overwrites existing comments
c726445
-- 
c726445
1.6.3
c726445