~ubuntu-branches/ubuntu/quantal/libpeas/quantal

« back to all changes in this revision

Viewing changes to tests/Makefile.plugin

  • Committer: Package Import Robot
  • Author(s): Martin Pitt, Martin Pitt, Oliver Sauder
  • Date: 2011-09-05 08:41:48 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: package-import@ubuntu.com-20110905084148-u4qhltt1ipo2frj9
Tags: 1.1.3-0ubuntu1
[ Martin Pitt ]
* New upstream release:
  - Link against pygobject 3. (LP: #839712)
  - Do not cast pointers to unsigned integers.
* Drop debian/patches/gint_is_not_gtype, upstream now.
* debian/control.in: Bump python-gobject-dev build dependency to >= 2.90 as
  per upstream configure.ac.
* debian/control.in: Move valac-0.12 to valac to use 0.14.

[ Oliver Sauder ]
* Added peas-gtk vapi file libpeas-gtk-1.0.vapi (LP: #825834) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
             fi ; \
12
12
           fi ; \
13
13
         done
 
14
 
 
15
clean-local:
 
16
        @test -z "$(noinst_PLUGIN)" || \
 
17
         test $(srcdir) = $(builddir) || \
 
18
         for plugin in $(noinst_PLUGIN) ; do \
 
19
           if test -e $(builddir)/$$plugin ; then \
 
20
             rm -f $(builddir)/$$plugin ; \
 
21
             # hack to cleanup .pyc files \
 
22
             if test -e $(builddir)/$${plugin}c ; then \
 
23
               rm -f $(builddir)/$${plugin}c ; \
 
24
             fi ; \
 
25
           fi ; \
 
26
         done