summaryrefslogtreecommitdiffstats
path: root/src/pango.mk
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2009-03-05 14:22:43 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2009-03-05 14:22:43 (GMT)
commitfc91f750200179725374365194962d6d5da9ac7c (patch)
tree695a913e214db3650c3f6c5a5ef8260bf4c91f9c /src/pango.mk
parent49a3b91ee4fe3d62af870689bd46005ca7fd00e2 (diff)
downloadmxe-fc91f750200179725374365194962d6d5da9ac7c.zip
mxe-fc91f750200179725374365194962d6d5da9ac7c.tar.gz
mxe-fc91f750200179725374365194962d6d5da9ac7c.tar.bz2
bugfix in several build rules: use "$(SED)" instead of "sed"
Diffstat (limited to 'src/pango.mk')
-rw-r--r--src/pango.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pango.mk b/src/pango.mk
index 57433c2..d49886e 100644
--- a/src/pango.mk
+++ b/src/pango.mk
@@ -16,11 +16,11 @@ define $(PKG)_UPDATE
endef
define $(PKG)_BUILD
- sed 's,DllMain,static _disabled_DllMain,' -i '$(1)/pango/pango-utils.c'
- sed 's,"[^"]*must build as DLL[^"]*","(disabled warning)",' -i '$(1)/configure'
- sed 's,enable_static=no,enable_static=yes,' -i '$(1)/configure'
- sed 's,enable_shared=yes,enable_shared=no,' -i '$(1)/configure'
- sed 's,^install-data-local:.*,install-data-local:,' -i '$(1)/modules/Makefile.in'
+ $(SED) 's,DllMain,static _disabled_DllMain,' -i '$(1)/pango/pango-utils.c'
+ $(SED) 's,"[^"]*must build as DLL[^"]*","(disabled warning)",' -i '$(1)/configure'
+ $(SED) 's,enable_static=no,enable_static=yes,' -i '$(1)/configure'
+ $(SED) 's,enable_shared=yes,enable_shared=no,' -i '$(1)/configure'
+ $(SED) 's,^install-data-local:.*,install-data-local:,' -i '$(1)/modules/Makefile.in'
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \