From d7ae18eea511caa6f1af63b7f07abebf2436fded Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Sun, 6 Jan 2013 21:52:44 +0100 Subject: [PATCH] build: Drop "=" from move-to-rootlibdir define The variable assignment operator was introduced in make 3.82 and thus breaks "make install" with older versions of make. Since "=" is optional in make 3.82 it is safe to drop. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 6daf960a8..9920bc13f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -168,7 +168,7 @@ AM_LDFLAGS = $(OUR_LDFLAGS) # ------------------------------------------------------------------------------ -define move-to-rootlibdir = +define move-to-rootlibdir if test "$(libdir)" != "$(rootlibdir)"; then \ $(MKDIR_P) $(DESTDIR)$(rootlibdir) && \ so_img_name=$$(readlink $(DESTDIR)$(libdir)/$$libname) && \ -- 2.30.2