[ostree] autogen.sh: replace all $(libbsdiff_srcpath) and $(libglnx_srcpath)



commit 9e3a018d85511b5928a62da732106e41ec633df8
Author: Giuseppe Scrivano <gscrivan redhat com>
Date:   Mon Feb 23 11:57:02 2015 +0100

    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 <gscrivan redhat com>

 autogen.sh |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/autogen.sh b/autogen.sh
index da479e0..3dc2b94 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
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]