~ubuntu-branches/ubuntu/lucid/gnome-terminal/lucid-proposed

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2010-09-07 15:07:22 UTC
  • mfrom: (1.4.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100907150722-e7cisxidt9h4rqlc
Tags: 2.30.2-0ubuntu1
* Update to stable upstream version 2.30.2, fixes:
  - LP: #526437 - Gtk-CRITICAL **: gtk_accel_map_unlock_path: assertion 
    `entry != NULL && entry->lock_count > 0' failed
  - LP: #534225 - setup_http_proxy_env constructs no_proxy incorrectly
* Revert commit 8dfe341 - bump VTE req to 0.24.0. This was just bumped to
  the current stable version of VTE for 2.30.0, but it's not actually
  required (and Lucid only has 0.23.5 anyway)
  - add debian/patches/21_dont_bump_vte_version.patch
* Refresh patches
  - update debian/patches/01_lpi.patch
  - update debian/patches/99_autoreconf.patch

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,
153
153
DBUS_BINDING_TOOL = @DBUS_BINDING_TOOL@
154
154
DEFS = @DEFS@
155
155
DEPDIR = @DEPDIR@
156
 
DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
157
156
DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper --disable-schemas-install --disable-silent-rules
158
157
DOC_USER_FORMATS = @DOC_USER_FORMATS@
159
158
DSYMUTIL = @DSYMUTIL@
203
202
MSGMERGE = @MSGMERGE@
204
203
NM = @NM@
205
204
NMEDIT = @NMEDIT@
206
 
OBJDUMP = @OBJDUMP@
207
205
OBJEXT = @OBJEXT@
208
206
OMF_DIR = @OMF_DIR@
209
207
OTOOL = @OTOOL@
213
211
PACKAGE_NAME = @PACKAGE_NAME@
214
212
PACKAGE_STRING = @PACKAGE_STRING@
215
213
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
214
PACKAGE_URL = @PACKAGE_URL@
216
215
PACKAGE_VERSION = @PACKAGE_VERSION@
217
216
PATH_SEPARATOR = @PATH_SEPARATOR@
218
217
PKG_CONFIG = @PKG_CONFIG@
427
426
#     (which will cause the Makefiles to be regenerated when you run `make');
428
427
# (2) otherwise, pass the desired values on the `make' command line.
429
428
$(RECURSIVE_TARGETS):
430
 
        @fail= failcom='exit 1'; \
 
429
        @failcom='exit 1'; \
431
430
        for f in x $$MAKEFLAGS; do \
432
431
          case $$f in \
433
432
            *=* | --[!k]*);; \
452
451
        fi; test -z "$$fail"
453
452
 
454
453
$(RECURSIVE_CLEAN_TARGETS):
455
 
        @fail= failcom='exit 1'; \
 
454
        @failcom='exit 1'; \
456
455
        for f in x $$MAKEFLAGS; do \
457
456
          case $$f in \
458
457
            *=* | --[!k]*);; \
616
615
          fi; \
617
616
        done
618
617
        -test -n "$(am__skip_mode_fix)" \
619
 
        || find "$(distdir)" -type d ! -perm -755 \
620
 
                -exec chmod u+rwx,go+rx {} \; -o \
 
618
        || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
621
619
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
622
620
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
623
621
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
660
658
distcheck: dist
661
659
        case '$(DIST_ARCHIVES)' in \
662
660
        *.tar.gz*) \
663
 
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
 
661
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
664
662
        *.tar.bz2*) \
665
 
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
 
663
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
666
664
        *.tar.lzma*) \
667
 
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
 
665
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
668
666
        *.tar.xz*) \
669
667
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
670
668
        *.tar.Z*) \
671
669
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
672
670
        *.shar.gz*) \
673
 
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
 
671
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
674
672
        *.zip*) \
675
673
          unzip $(distdir).zip ;;\
676
674
        esac