~ubuntu-desktop/libindicator/ubuntu

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Ken VanDine
  • Date: 2012-03-30 13:36:28 UTC
  • mfrom: (337.1.95 upstream)
  • Revision ID: ken.vandine@canonical.com-20120330133628-cpq9atlewuxlns2i
* New upstream release.
  * Fix a leaked GError (LP: #965459)
  * Fix memory leak when the proxy's name changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
        $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \
43
43
        build-aux/compile build-aux/config.guess build-aux/config.sub \
44
44
        build-aux/depcomp build-aux/install-sh build-aux/ltmain.sh \
45
 
        build-aux/missing compile config.guess config.sub depcomp \
46
 
        install-sh ltmain.sh missing
 
45
        build-aux/missing
47
46
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
48
47
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
49
48
        $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
206
205
abs_srcdir = @abs_srcdir@
207
206
abs_top_builddir = @abs_top_builddir@
208
207
abs_top_srcdir = @abs_top_srcdir@
 
208
ac_aux_dir = @ac_aux_dir@
209
209
ac_ct_AR = @ac_ct_AR@
210
210
ac_ct_CC = @ac_ct_CC@
211
211
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
788
788
                        echo Creating ChangeLog && \
789
789
                                ( cd "$(top_srcdir)" && \
790
790
                                echo '# Generated by Makefile. Do not edit.'; echo; \
791
 
                                $(top_srcdir)/missing --run bzr log --gnu-changelog ) > ChangeLog.tmp \
 
791
                                $(ac_aux_dir)/missing --run bzr log --gnu-changelog ) > ChangeLog.tmp \
792
792
                                && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
793
793
                                || (rm -f ChangeLog.tmp; \
794
794
                                        echo Failed to generate ChangeLog >&2 ); \
800
800
                        echo Creating AUTHORS && \
801
801
                                ( cd "$(top_srcdir)" && \
802
802
                                echo '# Generated by Makefile. Do not edit.'; echo; \
803
 
                                $(top_srcdir)/missing --run  bzr log --long --levels=0 | grep -e "^\s*author:" -e "^\s*committer:" | cut -d ":" -f 2 | cut -d "<" -f 1 | sort -u) > AUTHORS.tmp \
 
803
                                $(ac_aux_dir)/missing --run  bzr log --long --levels=0 | grep -e "^\s*author:" -e "^\s*committer:" | cut -d ":" -f 2 | cut -d "<" -f 1 | sort -u) > AUTHORS.tmp \
804
804
                                && mv -f AUTHORS.tmp $(top_distdir)/AUTHORS \
805
805
                                || (rm -f AUTHORS.tmp; \
806
806
                                        echo Failed to generate AUTHORS >&2 ); \