~ubuntu-branches/ubuntu/trusty/glib2.0/trusty-proposed

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-03-09 11:28:22 UTC
  • mfrom: (3.4.8 experimental)
  • Revision ID: james.westby@ubuntu.com-20100309112822-j4n0v3xbtsup8s97
Tags: 2.23.5-1ubuntu1
* Resync on Debian
* debian/patches/01_gettext-desktopfiles.patch:
  - updated to use gettext for X-GNOME-Fullname too
* debian/patches/71_gio_launch_handler.patch:
  - new gio default launch handle feature required for wncksync
* debian/control.in, 
  debian/patches/80-gtester-subunit.patch:
  - gtester-report subunit support
* debian/libglib2.0-0.symbols:
  - updated the symbols list for the gio launcher handler
* debian/rules:
  - don't break build on test suite errors, debian recently activated this but
    the build breaks even when there is no error in the testsuite

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.11.1 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,
226
226
GSPAWN = @GSPAWN@
227
227
GTHREAD_COMPILE_IMPL_DEFINES = @GTHREAD_COMPILE_IMPL_DEFINES@
228
228
GTKDOC_CHECK = @GTKDOC_CHECK@
229
 
GTKDOC_MKPDF = @GTKDOC_MKPDF@
230
 
GTKDOC_REBASE = @GTKDOC_REBASE@
231
229
G_LIBS_EXTRA = @G_LIBS_EXTRA@
232
230
G_MODULE_BROKEN_RTLD_GLOBAL = @G_MODULE_BROKEN_RTLD_GLOBAL@
233
231
G_MODULE_HAVE_DLERROR = @G_MODULE_HAVE_DLERROR@
660
658
#     (which will cause the Makefiles to be regenerated when you run `make');
661
659
# (2) otherwise, pass the desired values on the `make' command line.
662
660
$(RECURSIVE_TARGETS):
663
 
        @fail= failcom='exit 1'; \
 
661
        @failcom='exit 1'; \
664
662
        for f in x $$MAKEFLAGS; do \
665
663
          case $$f in \
666
664
            *=* | --[!k]*);; \
685
683
        fi; test -z "$$fail"
686
684
 
687
685
$(RECURSIVE_CLEAN_TARGETS):
688
 
        @fail= failcom='exit 1'; \
 
686
        @failcom='exit 1'; \
689
687
        for f in x $$MAKEFLAGS; do \
690
688
          case $$f in \
691
689
            *=* | --[!k]*);; \
852
850
          top_distdir="$(top_distdir)" distdir="$(distdir)" \
853
851
          dist-hook
854
852
        -test -n "$(am__skip_mode_fix)" \
855
 
        || find "$(distdir)" -type d ! -perm -755 \
856
 
                -exec chmod u+rwx,go+rx {} \; -o \
 
853
        || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
857
854
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
858
855
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
859
856
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
897
894
distcheck: dist
898
895
        case '$(DIST_ARCHIVES)' in \
899
896
        *.tar.gz*) \
900
 
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
 
897
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
901
898
        *.tar.bz2*) \
902
 
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
 
899
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
903
900
        *.tar.lzma*) \
904
 
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
 
901
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
905
902
        *.tar.xz*) \
906
903
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
907
904
        *.tar.Z*) \
908
905
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
909
906
        *.shar.gz*) \
910
 
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
 
907
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
911
908
        *.zip*) \
912
909
          unzip $(distdir).zip ;;\
913
910
        esac