~ubuntu-branches/ubuntu/maverick/euca2ools/maverick-updates

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Dustin Kirkland
  • Date: 2010-03-05 16:59:25 UTC
  • Revision ID: james.westby@ubuntu.com-20100305165925-40rmhda8swzojyva
Tags: 1.2-0ubuntu5
* Cherry pick fixes from upstream, up to bzr r265, fixes:
  - LP: #522398 - throw exceptions instead of sys.exit(1)
  - LP: #522396 - fix version string
  - LP: #523332 - check rsync return code
  - LP: #516738 - upstream fix for image store
  - LP: #525137 - don't sys.exit(1)
  - LP: #526697 - merge upstream fix for this one
  - LP: #531076 - fix euca-describe-instances against one instance
  - LP: #526591 - fix config file parsing

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
install: build
56
56
        @for subdir in $(SUBDIRS); do \
57
57
                (cd $$subdir && $(MAKE) $@) || exit $$? ; done
58
 
        @install -g root -o root -m 755 -d $(PREFIX)/bin
59
 
        @install -g root -o root -m 755  bin/* $(PREFIX)/bin/
60
 
        @install -g root -o root -m 755 -d $(PREFIX)/man/man1
61
 
        @if [ -d $(MANDIR) ]; then install -g root -o root -m 644  $(MANDIR)/* $(PREFIX)/man/man1; fi
62
 
        @if [ -d $(BASH_COMPLETION) ]; then install -g root -o root -m 644  $(UTILDIR)/* $(BASH_COMPLETION); fi
 
58
        @install -o root -m 755 -d $(PREFIX)/bin
 
59
        @install -o root -m 755  bin/* $(PREFIX)/bin/
 
60
        @install -o root -m 755 -d $(PREFIX)/man/man1
 
61
        @if [ -d $(MANDIR) ]; then install -o root -m 644  $(MANDIR)/* $(PREFIX)/man/man1; fi
 
62
        @if [ -d $(BASH_COMPLETION) ]; then install -o root -m 644  $(UTILDIR)/* $(BASH_COMPLETION); fi
63
63
 
64
64
distclean clean:
65
65
        @for subdir in $(SUBDIRS); do \