diff options
author | Tony Theodore <tonyt@logyst.com> | 2014-11-24 06:28:07 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2014-11-24 06:28:07 (GMT) |
commit | df0979e31943ef520fbfacdbbed1079f2126750a (patch) | |
tree | d31a9469f5aba1531c52a4a692dd3f2a6fee74f0 | |
parent | 237f0064af118b1170eb7acc37e424fa5e3c696e (diff) | |
download | mxe-df0979e31943ef520fbfacdbbed1079f2126750a.zip mxe-df0979e31943ef520fbfacdbbed1079f2126750a.tar.gz mxe-df0979e31943ef520fbfacdbbed1079f2126750a.tar.bz2 |
apr-util: portability fix for $(SED)
-rw-r--r-- | src/apr-util.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/apr-util.mk b/src/apr-util.mk index 27e3201..d55e01b 100644 --- a/src/apr-util.mk +++ b/src/apr-util.mk @@ -29,7 +29,7 @@ define $(PKG)_BUILD $(MAKE) -C '$(1)' -j '$(JOBS)' $(MXE_DISABLE_CRUFT) LDFLAGS=-no-undefined $(MAKE) -C '$(1)' -j 1 install $(MXE_DISABLE_CRUFT) $(if $(BUILD_STATIC), \ - sed -i '1i #define APU_DECLARE_STATIC 1' \ + $(SED) -i '1i #define APU_DECLARE_STATIC 1' \ '$(PREFIX)/$(TARGET)/include/apr-1/apu.h') ln -sf '$(PREFIX)/$(TARGET)/bin/apu-1-config' '$(PREFIX)/bin/$(TARGET)-apu-1-config' endef |