From ae89e752e8a1e0055e3f0b5706d755811d91e4b0 Mon Sep 17 00:00:00 2001 From: Antonio Huete Jimenez Date: Sat, 13 Apr 2013 12:44:31 +0200 Subject: [PATCH] Use autotools discovered sed instead of calling directly system's one. --- Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index a18dc8e..0212b08 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,10 +20,10 @@ SUBDIRS = json-glib 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) + ${SED} -i "s|(DESTDIR)|${DESTDIR}|g" $(pcfiles) endif dist-hook: - git log -1 > $(distdir)/latest_commit \ No newline at end of file + git log -1 > $(distdir)/latest_commit