diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2009-06-09 13:11:31 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2009-06-09 13:11:31 (GMT) |
commit | f3947b9c66652892f28054cb56b4eaff2da857c9 (patch) | |
tree | 59b756d412fbe2d7ac1c0c24a4f0c808ed18b2df /src/libusb.mk | |
parent | 86067e6c29162f6be3301edad6327aab67a6e281 (diff) | |
download | mxe-f3947b9c66652892f28054cb56b4eaff2da857c9.zip mxe-f3947b9c66652892f28054cb56b4eaff2da857c9.tar.gz mxe-f3947b9c66652892f28054cb56b4eaff2da857c9.tar.bz2 |
bugfix: use "$(SED)" instead of "sed"
Diffstat (limited to 'src/libusb.mk')
-rw-r--r-- | src/libusb.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libusb.mk b/src/libusb.mk index a566ab8..0e1a524 100644 --- a/src/libusb.mk +++ b/src/libusb.mk @@ -18,7 +18,7 @@ endef define $(PKG)_BUILD # convert DOS line endings - sed 's,\r$$,,' -i '$(1)/Makefile' + $(SED) 's,\r$$,,' -i '$(1)/Makefile' # don't actually build the library (DLL file), # just create the DLL import stubs |