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.
This commit is contained in:
Michael Biebl 2013-01-06 21:52:44 +01:00
parent d05c556b6b
commit d7ae18eea5

View file

@ -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) && \