diff options
author | Brian P. Hinz <bphinz@users.sf.net> | 2016-05-11 21:55:56 -0400 |
---|---|---|
committer | Brian P. Hinz <bphinz@users.sf.net> | 2016-05-12 00:24:39 -0400 |
commit | 8b032e5ad25b85ef653aa7e9229f075394a59031 (patch) | |
tree | 118a38d3259a43143837cdf3f4d1a83800bb134c /contrib/packages/deb/ubuntu-xenial/debian/rules | |
parent | 3821d7edcc7371025d6d8b5575324fc7fe0aee14 (diff) | |
download | tigervnc-8b032e5ad25b85ef653aa7e9229f075394a59031.tar.gz tigervnc-8b032e5ad25b85ef653aa7e9229f075394a59031.zip |
Fix to workaround non-default libtool on debian
Debian patches libtool so that the default value of
link_all_deplibs is set to 'no' rather than 'unknown',
causing transitive dependencies in shared objects to
be lost.
Diffstat (limited to 'contrib/packages/deb/ubuntu-xenial/debian/rules')
-rw-r--r-- | contrib/packages/deb/ubuntu-xenial/debian/rules | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/packages/deb/ubuntu-xenial/debian/rules b/contrib/packages/deb/ubuntu-xenial/debian/rules index 97700834..1a7a20b5 100644 --- a/contrib/packages/deb/ubuntu-xenial/debian/rules +++ b/contrib/packages/deb/ubuntu-xenial/debian/rules @@ -59,6 +59,7 @@ config-stamp: xorg-source-stamp (cd unix/xserver; \ export PIXMANINCDIR=/usr/include/pixman-1; \ autoreconf -fiv; \ + patch -p1 -i ../../debian/xorg-source-patches/debian_libtool.patch; \ ./configure --prefix=/usr \ --disable-silent-rules \ --disable-static \ |