1
0
mirror of https://github.com/haiwen/libsearpc.git synced 2025-07-17 15:01:03 +00:00

Merge pull request #14 from Chilledheart/fix_sed_osx

[build] prevent bad sed usage under osx
This commit is contained in:
Daniel Pan 2014-07-18 12:35:54 +08:00
commit 05c357a383

View File

@ -20,7 +20,7 @@ SUBDIRS = lib pysearpc ${MAKE_DEMO} tests
install-data-local:
if MACOS
${SED} -i '' -e "s|(DESTDIR)|${DESTDIR}|g" $(pcfiles)
sed -i '' -e "s|(DESTDIR)|${DESTDIR}|g" $(pcfiles)
else
${SED} -i "s|(DESTDIR)|${DESTDIR}|g" $(pcfiles)
endif