~ubuntu-branches/ubuntu/oneiric/postgresql-9.1/oneiric-updates

« back to all changes in this revision

Viewing changes to src/pl/plpython/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-06-14 09:53:29 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110614095329-kerawur7tb6p8s71
Tags: 9.1~beta2-1
* New upstream beta release.
* Drop 03-cmsgcred-size.patch, fixed upstream.
* debian/postgresql-9.1.install: Install new pg_basebackup translations.
* debian/control: Fix the server-dev dependency to p-common to also work for
  backports.
* debian/watch: Fix for beta versions.
* debian/copyright: Add pointers to GPL and Artistic licenses for the Perl
  terms.
* debian/postgresql-9.1.preinst: Fail the package upgrade early when
  upgrading from beta-1, as the DB format changed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
114
114
uninstall: uninstall-lib uninstall-data
115
115
 
116
116
install-data: installdirs
117
 
        @for file in $(addprefix $(srcdir)/, $(DATA)); do \
118
 
          echo "$(INSTALL_DATA) $$file '$(DESTDIR)$(datadir)/extension'"; \
119
 
          $(INSTALL_DATA) $$file '$(DESTDIR)$(datadir)/extension'; \
120
 
        done
 
117
        $(INSTALL_DATA) $(addprefix $(srcdir)/, $(DATA)) '$(DESTDIR)$(datadir)/extension/'
121
118
 
122
119
uninstall-data:
123
120
        rm -f $(addprefix '$(DESTDIR)$(datadir)/extension'/, $(notdir $(DATA)))
141
138
              -e "s/LANGUAGE plpython2u/LANGUAGE plpython3u/g" \
142
139
              -e "s/EXTENSION plpythonu/EXTENSION plpython3u/g" \
143
140
              -e "s/EXTENSION plpython2u/EXTENSION plpython3u/g" \
144
 
            $$file >`echo $$file | sed 's,$(srcdir),python3,'`; \
 
141
            $$file >`echo $$file | sed 's,$(srcdir),python3,'` || exit; \
145
142
        done
146
143
 
147
144
clean3: