diff options
author | Michael Biebl <biebl@debian.org> | 2013-01-06 21:52:44 +0100 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2013-01-06 21:52:44 +0100 |
commit | d7ae18eea511caa6f1af63b7f07abebf2436fded (patch) | |
tree | 5589ddf08038aecc952f63dd0341ba6d92ed58a7 /Makefile.am | |
parent | d05c556b6b2a680ec8b51ecbbc99a9ab14c28eed (diff) |
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.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 6daf960a83..9920bc13f6 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) && \ |