fix-flac.dpatch 719 B

12345678910111213141516171819202122232425262728
  1. #! /bin/sh /usr/share/dpatch/dpatch-run
  2. ## fix-flac.dpatch by Joachim Reichel <joachim.reichel@gmx.de>
  3. ##
  4. ## DP: fix typo w.r.t. flac support
  5. @DPATCH@
  6. diff -urNad normalize-audio-0.7.7~/src/normalize-mp3.in normalize-audio-0.7.7/src/normalize-mp3.in
  7. --- normalize-audio-0.7.7~/src/normalize-mp3.in 2005-09-12 07:31:15.000000000 +0200
  8. +++ normalize-audio-0.7.7/src/normalize-mp3.in 2007-01-19 21:37:37.000000000 +0100
  9. @@ -294,7 +294,7 @@
  10. $path = find_prog("flac");
  11. if ($path) {
  12. $path .= " -s -d -o %w %m";
  13. - $FLAC = $path;
  14. + $FLACDECODE = $path;
  15. }
  16. }
  17. @@ -303,7 +303,7 @@
  18. $path = find_prog("flac");
  19. if ($path) {
  20. $path .= " -s -o %m %w";
  21. - $FLAC = $path;
  22. + $FLACENCODE = $path;
  23. }
  24. }