~ubuntu-branches/debian/squeeze/util-linux/squeeze

« back to all changes in this revision

Viewing changes to shlibs/uuid/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones, Milan Broz, Ken Kopin, Mike Frysinger, Cristian Rodríguez, Lawrence Rust, Scott James Remnant, Peter Breitenlohner, kevin.granade at gmail, Theodore Ts'o, Karel Zak, localization folks
  • Date: 2009-12-06 17:38:15 UTC
  • mfrom: (1.4.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20091206173815-assrul1ezb5jezar
Tags: 2.16.2-0
[Milan Broz]

* libuuid: remove .UE macro from libuuid man pages.

[Ken Kopin]

* Fix typo in dmesg manpage.

[Mike Frysinger]

* tailf: fix printf format
* swapon: handle <=linux-2.6.19 bug in /proc/swaps

[Cristian Rodríguez]

* fdformat: fix memory leak in verify_disk()

[Lawrence Rust]

* libblkid: fix FAT super block definition

[Scott James Remnant]

* hwclock: do not access hardware clock when using --systz
* hwclock: set kernel timezone with --systz --utc

[Peter Breitenlohner]

* mkswap: restore device argument in mkswap.8 synopsis

[kevin.granade@gmail.com]

* mount: document changed semantics of tmpfs size option in mount.8

[Theodore Ts'o]

* lib: fix file descriptor leak in is_mounted()

[Karel Zak]

* libblkid: fix typo (swsupend -> swsuspend)
* switch_root: remove TIOCSCTTY and setsid().  red: #519237
* libblkid: add missing packed attributes, add new UFS magic strings
* mount: update list of pseudo filesystems
* sfdisk: dump has to be $LANG insensitive
* mount: more explicitly explain 'strictatime' in mount.8
* libblkid: fix the default cache file path
* fsck.minix: fix broken zone checking
* docs: update AUTHORS file
* docs: add v2.16.2 ReleaseNotes
* build-sys: release++ (v2.16.2)
* po: merge changes

[localization folks]

* po: update vi.po (from translationproject.org) (Clytie Siddall)
* po: update pl.po (from translationproject.org) (Jakub Bogusz)
* po: update id.po (from translationproject.org) (Arif E. Nugroho)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.10.2 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
 
# 2003, 2004, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
 
5
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 
6
# Inc.
6
7
# This Makefile.in is free software; the Free Software Foundation
7
8
# gives unlimited permission to copy and/or distribute it,
8
9
# with or without modifications, as long as this notice is preserved.
16
17
 
17
18
VPATH = @srcdir@
18
19
pkgdatadir = $(datadir)/@PACKAGE@
 
20
pkgincludedir = $(includedir)/@PACKAGE@
19
21
pkglibdir = $(libdir)/@PACKAGE@
20
 
pkgincludedir = $(includedir)/@PACKAGE@
 
22
pkglibexecdir = $(libexecdir)/@PACKAGE@
21
23
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
22
24
install_sh_DATA = $(install_sh) -c -m 644
23
25
install_sh_PROGRAM = $(install_sh) -c
50
52
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
51
53
CONFIG_HEADER = $(top_builddir)/config.h
52
54
CONFIG_CLEAN_FILES = uuid.pc
 
55
CONFIG_CLEAN_VPATH_FILES =
53
56
SOURCES =
54
57
DIST_SOURCES =
55
58
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
64
67
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
65
68
    *) f=$$p;; \
66
69
  esac;
67
 
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
70
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
 
71
am__install_max = 40
 
72
am__nobase_strip_setup = \
 
73
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
 
74
am__nobase_strip = \
 
75
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
 
76
am__nobase_list = $(am__nobase_strip_setup); \
 
77
  for p in $$list; do echo "$$p $$p"; done | \
 
78
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
 
79
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
 
80
    if (++n[$$2] == $(am__install_max)) \
 
81
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
 
82
    END { for (dir in files) print dir, files[dir] }'
 
83
am__base_list = \
 
84
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
 
85
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
68
86
am__installdirs = "$(DESTDIR)$(pkgconfigdir)"
69
 
pkgconfigDATA_INSTALL = $(INSTALL_DATA)
70
87
DATA = $(dist_noinst_DATA) $(pkgconfig_DATA)
71
88
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
72
89
  distclean-recursive maintainer-clean-recursive
 
90
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
 
91
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
92
        distdir
73
93
ETAGS = etags
74
94
CTAGS = ctags
75
95
DIST_SUBDIRS = $(SUBDIRS)
76
96
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
97
am__relativize = \
 
98
  dir0=`pwd`; \
 
99
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
 
100
  sed_rest='s,^[^/]*/*,,'; \
 
101
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
 
102
  sed_butlast='s,/*[^/]*$$,,'; \
 
103
  while test -n "$$dir1"; do \
 
104
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
 
105
    if test "$$first" != "."; then \
 
106
      if test "$$first" = ".."; then \
 
107
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
 
108
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
 
109
      else \
 
110
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
 
111
        if test "$$first2" = "$$first"; then \
 
112
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
 
113
        else \
 
114
          dir2="../$$dir2"; \
 
115
        fi; \
 
116
        dir0="$$dir0"/"$$first"; \
 
117
      fi; \
 
118
    fi; \
 
119
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
 
120
  done; \
 
121
  reldir="$$dir2"
77
122
ACLOCAL = @ACLOCAL@
78
123
AMTAR = @AMTAR@
79
124
AR = @AR@
142
187
PACKAGE_NAME = @PACKAGE_NAME@
143
188
PACKAGE_STRING = @PACKAGE_STRING@
144
189
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
190
PACKAGE_URL = @PACKAGE_URL@
145
191
PACKAGE_VERSION = @PACKAGE_VERSION@
146
192
PATH_SEPARATOR = @PATH_SEPARATOR@
147
193
PERL = @PERL@
259
305
              exit 1;; \
260
306
          esac; \
261
307
        done; \
262
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  shlibs/uuid/Makefile'; \
263
 
        cd $(top_srcdir) && \
264
 
          $(AUTOMAKE) --foreign  shlibs/uuid/Makefile
 
308
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign shlibs/uuid/Makefile'; \
 
309
        $(am__cd) $(top_srcdir) && \
 
310
          $(AUTOMAKE) --foreign shlibs/uuid/Makefile
265
311
.PRECIOUS: Makefile
266
312
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
267
313
        @case '$?' in \
279
325
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
280
326
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
281
327
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
328
$(am__aclocal_m4_deps):
282
329
uuid.pc: $(top_builddir)/config.status $(srcdir)/uuid.pc.in
283
330
        cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
284
331
 
290
337
install-pkgconfigDATA: $(pkgconfig_DATA)
291
338
        @$(NORMAL_INSTALL)
292
339
        test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
293
 
        @list='$(pkgconfig_DATA)'; for p in $$list; do \
 
340
        @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
 
341
        for p in $$list; do \
294
342
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
295
 
          f=$(am__strip_dir) \
296
 
          echo " $(pkgconfigDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgconfigdir)/$$f'"; \
297
 
          $(pkgconfigDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgconfigdir)/$$f"; \
 
343
          echo "$$d$$p"; \
 
344
        done | $(am__base_list) | \
 
345
        while read files; do \
 
346
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
 
347
          $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
298
348
        done
299
349
 
300
350
uninstall-pkgconfigDATA:
301
351
        @$(NORMAL_UNINSTALL)
302
 
        @list='$(pkgconfig_DATA)'; for p in $$list; do \
303
 
          f=$(am__strip_dir) \
304
 
          echo " rm -f '$(DESTDIR)$(pkgconfigdir)/$$f'"; \
305
 
          rm -f "$(DESTDIR)$(pkgconfigdir)/$$f"; \
306
 
        done
 
352
        @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
 
353
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 
354
        test -n "$$files" || exit 0; \
 
355
        echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
 
356
        cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
307
357
 
308
358
# This directory's subdirectories are mostly independent; you can cd
309
359
# into them and run `make' without going through this Makefile.
329
379
          else \
330
380
            local_target="$$target"; \
331
381
          fi; \
332
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
382
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
333
383
          || eval $$failcom; \
334
384
        done; \
335
385
        if test "$$dot_seen" = "no"; then \
363
413
          else \
364
414
            local_target="$$target"; \
365
415
          fi; \
366
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
416
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
367
417
          || eval $$failcom; \
368
418
        done && test -z "$$fail"
369
419
tags-recursive:
370
420
        list='$(SUBDIRS)'; for subdir in $$list; do \
371
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
421
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
372
422
        done
373
423
ctags-recursive:
374
424
        list='$(SUBDIRS)'; for subdir in $$list; do \
375
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
425
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
376
426
        done
377
427
 
378
428
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
387
437
 
388
438
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
389
439
                $(TAGS_FILES) $(LISP)
390
 
        tags=; \
 
440
        set x; \
391
441
        here=`pwd`; \
392
442
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
393
443
          include_option=--etags-include; \
399
449
        list='$(SUBDIRS)'; for subdir in $$list; do \
400
450
          if test "$$subdir" = .; then :; else \
401
451
            test ! -f $$subdir/TAGS || \
402
 
              tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
452
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
403
453
          fi; \
404
454
        done; \
405
455
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
408
458
          done | \
409
459
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
410
460
              END { if (nonempty) { for (i in files) print i; }; }'`; \
411
 
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
461
        shift; \
 
462
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
412
463
          test -n "$$unique" || unique=$$empty_fix; \
413
 
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
414
 
            $$tags $$unique; \
 
464
          if test $$# -gt 0; then \
 
465
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
466
              "$$@" $$unique; \
 
467
          else \
 
468
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
469
              $$unique; \
 
470
          fi; \
415
471
        fi
416
472
ctags: CTAGS
417
473
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
418
474
                $(TAGS_FILES) $(LISP)
419
 
        tags=; \
420
475
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
421
476
        unique=`for i in $$list; do \
422
477
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
423
478
          done | \
424
479
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
425
480
              END { if (nonempty) { for (i in files) print i; }; }'`; \
426
 
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
481
        test -z "$(CTAGS_ARGS)$$unique" \
427
482
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
428
 
             $$tags $$unique
 
483
             $$unique
429
484
 
430
485
GTAGS:
431
486
        here=`$(am__cd) $(top_builddir) && pwd` \
432
 
          && cd $(top_srcdir) \
433
 
          && gtags -i $(GTAGS_ARGS) $$here
 
487
          && $(am__cd) $(top_srcdir) \
 
488
          && gtags -i $(GTAGS_ARGS) "$$here"
434
489
 
435
490
distclean-tags:
436
491
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
451
506
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
452
507
          if test -d $$d/$$file; then \
453
508
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 
509
            if test -d "$(distdir)/$$file"; then \
 
510
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 
511
            fi; \
454
512
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
455
 
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
513
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 
514
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
456
515
            fi; \
457
 
            cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
516
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
458
517
          else \
459
 
            test -f $(distdir)/$$file \
460
 
            || cp -p $$d/$$file $(distdir)/$$file \
 
518
            test -f "$(distdir)/$$file" \
 
519
            || cp -p $$d/$$file "$(distdir)/$$file" \
461
520
            || exit 1; \
462
521
          fi; \
463
522
        done
464
 
        list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
523
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
465
524
          if test "$$subdir" = .; then :; else \
466
525
            test -d "$(distdir)/$$subdir" \
467
526
            || $(MKDIR_P) "$(distdir)/$$subdir" \
468
527
            || exit 1; \
469
 
            distdir=`$(am__cd) $(distdir) && pwd`; \
470
 
            top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
471
 
            (cd $$subdir && \
 
528
          fi; \
 
529
        done
 
530
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
531
          if test "$$subdir" = .; then :; else \
 
532
            dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 
533
            $(am__relativize); \
 
534
            new_distdir=$$reldir; \
 
535
            dir1=$$subdir; dir2="$(top_distdir)"; \
 
536
            $(am__relativize); \
 
537
            new_top_distdir=$$reldir; \
 
538
            echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
 
539
            echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
 
540
            ($(am__cd) $$subdir && \
472
541
              $(MAKE) $(AM_MAKEFLAGS) \
473
 
                top_distdir="$$top_distdir" \
474
 
                distdir="$$distdir/$$subdir" \
 
542
                top_distdir="$$new_top_distdir" \
 
543
                distdir="$$new_distdir" \
475
544
                am__remove_distdir=: \
476
545
                am__skip_length_check=: \
 
546
                am__skip_mode_fix=: \
477
547
                distdir) \
478
548
              || exit 1; \
479
549
          fi; \
506
576
 
507
577
distclean-generic:
508
578
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
579
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
509
580
 
510
581
maintainer-clean-generic:
511
582
        @echo "This command is intended for maintainers to use"
524
595
 
525
596
html: html-recursive
526
597
 
 
598
html-am:
 
599
 
527
600
info: info-recursive
528
601
 
529
602
info-am:
532
605
 
533
606
install-dvi: install-dvi-recursive
534
607
 
 
608
install-dvi-am:
 
609
 
535
610
install-exec-am:
536
611
 
537
612
install-html: install-html-recursive
538
613
 
 
614
install-html-am:
 
615
 
539
616
install-info: install-info-recursive
540
617
 
 
618
install-info-am:
 
619
 
541
620
install-man:
542
621
 
543
622
install-pdf: install-pdf-recursive
544
623
 
 
624
install-pdf-am:
 
625
 
545
626
install-ps: install-ps-recursive
546
627
 
 
628
install-ps-am:
 
629
 
547
630
installcheck-am:
548
631
 
549
632
maintainer-clean: maintainer-clean-recursive
564
647
 
565
648
uninstall-am: uninstall-pkgconfigDATA
566
649
 
567
 
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
568
 
        install-strip
 
650
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
 
651
        install-am install-strip tags-recursive
569
652
 
570
653
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
571
654
        all all-am check check-am clean clean-generic clean-libtool \
588
671
 
589
672
$(ul_libuuid_la):
590
673
        $(MAKE) -C $(ul_libuuid_builddir)
 
674
 
591
675
# Tell versions [3.59,3.63) of GNU make to not export all variables.
592
676
# Otherwise a system limit (for SysV at least) may be exceeded.
593
677
.NOEXPORT: