diff options
author | davilla <davilla@4pi.com> | 2011-10-12 22:55:57 -0400 |
---|---|---|
committer | davilla <davilla@4pi.com> | 2011-10-13 00:54:52 -0400 |
commit | 54004d7797d9e699914a2bb0e7e3fdad5bce0263 (patch) | |
tree | 2223fa4c07265e8cc5f78505ed48e1d1cce4f2c6 /lib | |
parent | 6777b009163f6c7b0f0836e04d2897d640f9799a (diff) |
fixed, sporatic make failures when libid3tag tries to regenerate genre.dat on darwin. sed will point to the native /usr/bin/sed which is not gnu sed, use this format so that it uses the correct sed as found by autotools
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libid3tag/libid3tag/Makefile.am | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libid3tag/libid3tag/Makefile.am b/lib/libid3tag/libid3tag/Makefile.am index dd7e9d2b38..5fe233b749 100644 --- a/lib/libid3tag/libid3tag/Makefile.am +++ b/lib/libid3tag/libid3tag/Makefile.am @@ -99,20 +99,20 @@ $(srcdir)/frametype.c: $(srcdir)/frametype.gperf Makefile.am cd $(srcdir) && \ gperf -tCcTonD -K id -N id3_frametype_lookup -s -3 -k '*' \ frametype.gperf | \ - sed -e 's/\(struct id3_frametype\);/\1/' | \ - sed -e '/\$$''Id: /s/\$$//g' >frametype.c + $(SED) -e 's/\(struct id3_frametype\);/\1/' | \ + $(SED) -e '/\$$''Id: /s/\$$//g' >frametype.c $(srcdir)/compat.c: $(srcdir)/compat.gperf Makefile.am cd $(srcdir) && \ gperf -tCcTonD -K id -N id3_compat_lookup -s -3 -k '*' \ compat.gperf | \ - sed -e 's/\(struct id3_compat\);/\1/' | \ - sed -e '/\$$''Id: /s/\$$//g' >compat.c + $(SED) -e 's/\(struct id3_compat\);/\1/' | \ + $(SED) -e '/\$$''Id: /s/\$$//g' >compat.c $(srcdir)/genre.dat: $(srcdir)/genre.dat.in $(srcdir)/genre.dat.sed Makefile.am cd $(srcdir) && \ - sed -n -f genre.dat.sed genre.dat.in | \ - sed -e '/\$$''Id: /s/\$$//g' >genre.dat + $(SED) -n -f genre.dat.sed genre.dat.in | \ + $(SED) -e '/\$$''Id: /s/\$$//g' >genre.dat libtool: $(LIBTOOL_DEPS) $(SHELL) ./config.status --recheck |