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/sdl_mixer.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/sdl_mixer.mk')
-rw-r--r-- | src/sdl_mixer.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sdl_mixer.mk b/src/sdl_mixer.mk index d3e7e1c..d61b5ef 100644 --- a/src/sdl_mixer.mk +++ b/src/sdl_mixer.mk @@ -20,13 +20,13 @@ define $(PKG)_UPDATE endef define $(PKG)_BUILD - $(SED) 's,^\(Requires:.*\),\1 vorbisfile,' -i '$(1)/SDL_mixer.pc.in' + $(SED) -i 's,^\(Requires:.*\),\1 vorbisfile,' '$(1)/SDL_mixer.pc.in' echo \ 'Libs.private:' \ "`$(PREFIX)/$(TARGET)/bin/libmikmod-config --libs`" \ "`$(PREFIX)/$(TARGET)/bin/smpeg-config --libs`" \ >> '$(1)/SDL_mixer.pc.in' - $(SED) 's,for path in /usr/local; do,for path in; do,' -i '$(1)/configure' + $(SED) -i 's,for path in /usr/local; do,for path in; do,' '$(1)/configure' cd '$(1)' && ./configure \ --host='$(TARGET)' \ --disable-shared \ |