From ffb943ee9486eda7482061a62b3bd1c1ef61e361 Mon Sep 17 00:00:00 2001 From: Rafaël Carré Date: Sat, 5 Jun 2010 15:18:43 +0000 Subject: Fix plugin bitmaps dependencies generation extended regular expressions (e.g., using | or +) can't be used with posix sed. We can use them with awk though git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26583 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/bitmaps/pluginbitmaps.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/plugins/bitmaps/pluginbitmaps.make b/apps/plugins/bitmaps/pluginbitmaps.make index f907219ed5..f9b4adb033 100644 --- a/apps/plugins/bitmaps/pluginbitmaps.make +++ b/apps/plugins/bitmaps/pluginbitmaps.make @@ -32,7 +32,7 @@ PLUGINBITMAPLIB := $(BUILDDIR)/apps/plugins/bitmaps/libpluginbitmaps.a PLUGINBITMAPDIR := $(dir $(PLUGINBITMAPLIB)) PBMPHFILES := $(subst $(ROOTDIR),$(BUILDDIR),$(PBMP)) -PBMPHFILES := $(shell echo $(PBMPHFILES) | sed -e 's/\.[0-9x]\+\.bmp/.h/g' -e 's/\.bmp/.h/g' -e 's/apps\/plugins\/bitmaps\/\(mono\|native\|remote_mono\|remote_native\)/pluginbitmaps/g') +PBMPHFILES := $(shell echo $(PBMPHFILES) | sed -e 's/\.[0-9x]*\.bmp/.h/g' -e 's/\.bmp/.h/g' | awk "{ gsub(/apps\/plugins\/bitmaps\/(mono|native|remote_mono|remote_native)/, \"pluginbitmaps\"); print }" ) $(PBMPHFILES): $(PLUGIN_BITMAPS) -- cgit v1.2.3