~kermiac/+junk/cheese-apport-hook

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-03-30 00:19:46 UTC
  • mfrom: (1.2.19 upstream)
  • Revision ID: james.westby@ubuntu.com-20100330001946-wcx3qcrfpmxll9ly
Tags: 2.30.0-0ubuntu1
* New upstream version:
  - countdown: move rsvg_init and rsvg_term into main Initialize rsvg at 
    startup and clean it up at exit. Fixes a long standing bug that made 
    cheese crash when going fullscreen with button and window sounds enabled.
    (lp: #546069)
  - window: set the main button label to "Stop recording" while recording.
    Little regression introduced in 2.29.90.
  - widget: use dialog-error icon The "error" icon used before doesn't exist 
    in gnome-icon-theme 2.29 and causes crashes. Use "dialog-error" instead.

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,
397
397
#     (which will cause the Makefiles to be regenerated when you run `make');
398
398
# (2) otherwise, pass the desired values on the `make' command line.
399
399
$(RECURSIVE_TARGETS):
400
 
        @fail= failcom='exit 1'; \
 
400
        @failcom='exit 1'; \
401
401
        for f in x $$MAKEFLAGS; do \
402
402
          case $$f in \
403
403
            *=* | --[!k]*);; \
422
422
        fi; test -z "$$fail"
423
423
 
424
424
$(RECURSIVE_CLEAN_TARGETS):
425
 
        @fail= failcom='exit 1'; \
 
425
        @failcom='exit 1'; \
426
426
        for f in x $$MAKEFLAGS; do \
427
427
          case $$f in \
428
428
            *=* | --[!k]*);; \
589
589
          top_distdir="$(top_distdir)" distdir="$(distdir)" \
590
590
          dist-hook
591
591
        -test -n "$(am__skip_mode_fix)" \
592
 
        || find "$(distdir)" -type d ! -perm -755 \
593
 
                -exec chmod u+rwx,go+rx {} \; -o \
 
592
        || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
594
593
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
595
594
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
596
595
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
634
633
distcheck: dist
635
634
        case '$(DIST_ARCHIVES)' in \
636
635
        *.tar.gz*) \
637
 
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
 
636
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
638
637
        *.tar.bz2*) \
639
 
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
 
638
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
640
639
        *.tar.lzma*) \
641
 
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
 
640
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
642
641
        *.tar.xz*) \
643
642
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
644
643
        *.tar.Z*) \
645
644
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
646
645
        *.shar.gz*) \
647
 
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
 
646
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
648
647
        *.zip*) \
649
648
          unzip $(distdir).zip ;;\
650
649
        esac