~ubuntu-branches/ubuntu/precise/util-linux/precise-proposed

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2011-06-20 22:31:50 UTC
  • mfrom: (1.6.3 upstream) (4.5.1 sid)
  • Revision ID: james.westby@ubuntu.com-20110620223150-lz8wrv0946ihcz3z
Tags: 2.19.1-2ubuntu1
* Merge from Debian unstable, remaining changes:
  - Build for multiarch.
  - Add pre-depends on multiarch-support.
  - configure.ac: don't try to be clever about extracting a path name from
    $libdir to append to /usr in a way that's not overridable; instead,
    reuse the built-in configurable libexecdir.
  - Fix up the .pc.in files to know about libexecdir, so our substitutions
    don't leave us with unusable pkg-config files.
  - Install custom blkid.conf to use /dev/.blkid.tab since we don't
    expect device names to survive a reboot
  - Mention mountall(8) in fstab(5) manpages, along with its special
    options.
  - Since upstart is required in Ubuntu, the hwclock.sh init script is not
    called on startup and the hwclockfirst.sh init script is removed.
  - Drop depends on initscripts for the above.
  - Replace hwclock udev rule with an Upstart job.
  - For the case where mount is called with a directory to mount, look
    that directory up in mountall's /lib/init/fstab if we couldn't find
    it mentioned anywhere else.  This means "mount /proc", "mount /sys",
    etc. work.
  - mount.8 points to the cifs-utils package, not the obsolete smbfs one. 
* Dropped changes:
  - mount.preinst: lsb_release has been fixed in lucid and above to be
    usable without configuration, so we don't have to diverge from Debian
    here anymore.
* Changes merged upstream:
  - sfdisk support for '+' with '-N'
  - mount/umount.c: fix a segfault on umount with empty mtab entry
  - Fix arbitrary unmount with fuse security issue

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
        TODO config/config.guess config/config.rpath config/config.sub \
42
42
        config/depcomp config/install-sh config/ltmain.sh \
43
43
        config/missing config/mkinstalldirs config/texinfo.tex
44
 
@LINUX_TRUE@am__append_1 = \
 
44
@BUILD_LIBUUID_TRUE@am__append_1 = shlibs/uuid
 
45
@BUILD_LIBBLKID_TRUE@am__append_2 = shlibs/blkid
 
46
@BUILD_LIBMOUNT_TRUE@am__append_3 = shlibs/mount
 
47
@LINUX_TRUE@am__append_4 = \
45
48
@LINUX_TRUE@    hwclock \
46
49
@LINUX_TRUE@    partx
47
50
 
48
 
@BUILD_MOUNT_TRUE@am__append_2 = mount
49
 
@BUILD_FSCK_TRUE@am__append_3 = fsck
 
51
@BUILD_INIT_TRUE@am__append_5 = simpleinit
 
52
@BUILD_MOUNT_TRUE@am__append_6 = mount
 
53
@BUILD_FSCK_TRUE@@BUILD_LIBBLKID_TRUE@am__append_7 = fsck
50
54
subdir = .
51
55
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
52
56
am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \
89
93
        distdir dist dist-all distcheck
90
94
ETAGS = etags
91
95
CTAGS = ctags
92
 
DIST_SUBDIRS = include disk-utils fdisk getopt lib shlibs login-utils \
93
 
        misc-utils po schedutils sys-utils text-utils tests hwclock \
94
 
        partx mount fsck
 
96
DIST_SUBDIRS = include disk-utils fdisk getopt lib shlibs/uuid \
 
97
        shlibs/blkid shlibs/mount man/ru login-utils misc-utils po \
 
98
        schedutils sys-utils text-utils tests hwclock partx simpleinit \
 
99
        mount fsck
95
100
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
96
101
distdir = $(PACKAGE)-$(VERSION)
97
102
top_distdir = $(distdir)
172
177
LIBBLKID_VERSION_INFO = @LIBBLKID_VERSION_INFO@
173
178
LIBICONV = @LIBICONV@
174
179
LIBINTL = @LIBINTL@
 
180
LIBMOUNT_VERSION = @LIBMOUNT_VERSION@
 
181
LIBMOUNT_VERSION_INFO = @LIBMOUNT_VERSION_INFO@
175
182
LIBOBJS = @LIBOBJS@
176
183
LIBS = @LIBS@
177
184
LIBTOOL = @LIBTOOL@
213
220
SELINUX_LIBS_STATIC = @SELINUX_LIBS_STATIC@
214
221
SET_MAKE = @SET_MAKE@
215
222
SHELL = @SHELL@
 
223
SOCKET_LIBS = @SOCKET_LIBS@
216
224
STRIP = @STRIP@
217
225
SUID_CFLAGS = @SUID_CFLAGS@
218
226
SUID_LDFLAGS = @SUID_LDFLAGS@
303
311
ul_libuuid_srcdir = $(top_srcdir)/shlibs/uuid/src
304
312
ul_libuuid_builddir = $(top_builddir)/shlibs/uuid/src
305
313
ul_libuuid_la = $(top_builddir)/shlibs/uuid/src/libuuid.la
306
 
SUBDIRS = include disk-utils fdisk getopt lib shlibs login-utils \
307
 
        misc-utils po schedutils sys-utils text-utils tests \
308
 
        $(am__append_1) $(am__append_2) $(am__append_3)
 
314
 
 
315
# mount
 
316
ul_libmount_srcdir = $(top_srcdir)/shlibs/mount/src
 
317
ul_libmount_builddir = $(top_builddir)/shlibs/mount/src
 
318
ul_libmount_la = $(top_builddir)/shlibs/mount/src/libmount.la
 
319
 
 
320
# libmount.h is generated by ./configure script and stored in build directory
 
321
ul_libmount_incdir = $(ul_libmount_builddir)
 
322
SHLIBS_DIRS = $(am__append_1) $(am__append_2) $(am__append_3)
 
323
MAN_DIRS = man/ru
 
324
SUBDIRS = include disk-utils fdisk getopt lib $(SHLIBS_DIRS) \
 
325
        $(MAN_DIRS) login-utils misc-utils po schedutils sys-utils \
 
326
        text-utils tests $(am__append_4) $(am__append_5) \
 
327
        $(am__append_6) $(am__append_7)
309
328
RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o \
310
329
                -name CVS -o -name .pc -o -name .hg -o -name .git \) -prune -o
311
330
 
835
854
$(ul_libuuid_la):
836
855
        $(MAKE) -C $(ul_libuuid_builddir)
837
856
 
 
857
$(ul_libmount_la):
 
858
        $(MAKE) -C $(ul_libmount_builddir)
 
859
 
838
860
distclean-local:
839
861
        -find . -name \*~ -o -name \*.orig -o -name \*.rej | xargs rm -f
840
862
        rm -rf autom4te.cache