diff options
author | Karel Zak <kzak@redhat.com> | 2009-02-13 10:54:24 +0100 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2009-02-13 11:37:00 +0100 |
commit | b12991dd5c4f8294096723158b6d387fc3d27342 (patch) | |
tree | 1db72f944ffcd2e6bb494c65a43d034b29779192 /config | |
parent | a0487b1cb5beffb8f6783476664b01e8833e0ea8 (diff) | |
download | util-linux-old-b12991dd5c4f8294096723158b6d387fc3d27342.tar.gz |
build-sys: libtoolize by libtool-2
We need an infrastructure for stared libraries. The latest libtool-2
seems useful and it's definitely better than the old 1.5 crap.
You need to install libtool-2 when you want to run ./autogen.sh script
after checkout from git repository.
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/include-Makefile.am | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/include-Makefile.am b/config/include-Makefile.am index 876fa396..70494abc 100644 --- a/config/include-Makefile.am +++ b/config/include-Makefile.am @@ -12,3 +12,12 @@ AM_LDFLAGS = # conditional is false. # Work the bug around until it is fixed: dist_noinst_DATA = $(dist_man_MANS) + +# Paths to in-tree libraries (use ul_ prefix to avoid possible collisions) +# +ul_libblkid_srcdir = $(top_builddir)/libs/blkid/src +ul_libblkid_la = $(ul_libblkid_srcdir)/libblkid.la + +$(ul_libblkid_la): + $(MAKE) -C $(ul_libblkid_srcdir) + |