From 9e3a018d85511b5928a62da732106e41ec633df8 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Mon, 23 Feb 2015 11:57:02 +0100 Subject: [PATCH] autogen.sh: replace all $(libbsdiff_srcpath) and $(libglnx_srcpath) The variable could be specified more times on the same line, having something like: EXTRA_DIST += ./libglnx/README $(libglnx_srcpath)/COPYING Now the change ensures that it looks like: EXTRA_DIST += ./libglnx/README ./libglnx/COPYING Signed-off-by: Giuseppe Scrivano --- autogen.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index da479e07..3dc2b94b 100755 --- a/autogen.sh +++ b/autogen.sh @@ -33,8 +33,8 @@ if ! test -f libglnx/README.md -o bsdiff/README.md; then git submodule update --init fi # Workaround automake bug with subdir-objects and computed paths -sed -e 's,$(libglnx_srcpath),'${srcdir}/libglnx, < libglnx/Makefile-libglnx.am >libglnx/Makefile-libglnx.am.inc -sed -e 's,$(libbsdiff_srcpath),'${srcdir}/bsdiff, < bsdiff/Makefile-bsdiff.am >bsdiff/Makefile-bsdiff.am.inc +sed -e 's,$(libglnx_srcpath),'${srcdir}/libglnx,g < libglnx/Makefile-libglnx.am >libglnx/Makefile-libglnx.am.inc +sed -e 's,$(libbsdiff_srcpath),'${srcdir}/bsdiff,g < bsdiff/Makefile-bsdiff.am >bsdiff/Makefile-bsdiff.am.inc autoreconf --force --install --verbose