diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2010-02-16 03:12:53 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2010-02-16 03:12:53 (GMT) |
commit | e1ab4466ff074344814fdb36c8c9d7acf08b2000 (patch) | |
tree | 1e2ad25cbda6d1c48f9e0586a93e2b92c0f27246 /src/fontconfig.mk | |
parent | 18316ec7d018eb15683c7a8b316351d83b3a1495 (diff) | |
download | mxe-e1ab4466ff074344814fdb36c8c9d7acf08b2000.zip mxe-e1ab4466ff074344814fdb36c8c9d7acf08b2000.tar.gz mxe-e1ab4466ff074344814fdb36c8c9d7acf08b2000.tar.bz2 |
changed coding style: make "-i" always the first argument of $(SED) (by Mark Brand)
Diffstat (limited to 'src/fontconfig.mk')
-rw-r--r-- | src/fontconfig.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fontconfig.mk b/src/fontconfig.mk index 169f7b7..2df4a8b 100644 --- a/src/fontconfig.mk +++ b/src/fontconfig.mk @@ -21,10 +21,10 @@ endef define $(PKG)_BUILD # ensure there is no (buggy) attempt to install the *.dll.a file # (remove this line of you want to link dynamically) - $(SED) 's,^install-data-local:.*,install-data-local:,' -i '$(1)/src/Makefile.in' + $(SED) -i 's,^install-data-local:.*,install-data-local:,' '$(1)/src/Makefile.in' # wine confuses the cross-compiling detection, so set it explicitly - $(SED) 's,cross_compiling=no,cross_compiling=yes,' -i '$(1)/configure' - $(SED) 's,^\(Libs:.*\),\1 @EXPAT_LIBS@ @FREETYPE_LIBS@,' -i '$(1)/fontconfig.pc.in' + $(SED) -i 's,cross_compiling=no,cross_compiling=yes,' '$(1)/configure' + $(SED) -i 's,^\(Libs:.*\),\1 @EXPAT_LIBS@ @FREETYPE_LIBS@,' '$(1)/fontconfig.pc.in' cd '$(1)' && ./configure \ --host='$(TARGET)' \ --disable-shared \ |