~ubuntu-branches/ubuntu/oneiric/debootstrap/oneiric

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson, Robert Millan
  • Date: 2011-08-10 13:04:41 UTC
  • mfrom: (15.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20110810130441-nrz86csbg8n2d9sr
Tags: 1.0.35
[ Robert Millan ]
* Don't build devices.tar.gz if building on GNU/kFreeBSD (closes:
  #637297).
* Don't use --arch when we specifically care about the host architecture
  (closes: #637298).

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
MAKEDEV := /sbin/MAKEDEV
5
5
 
6
 
ifneq ($(shell uname),GNU)
 
6
ifeq ($(shell uname),Linux)
7
7
all: devices.tar.gz
8
8
else
9
9
all:
25
25
        chown root:root $(DESTDIR)/usr/sbin/debootstrap
26
26
        chmod 0755 $(DESTDIR)/usr/sbin/debootstrap
27
27
 
28
 
ifneq ($(shell uname),GNU)
 
28
ifeq ($(shell uname),Linux)
29
29
        install -o root -g root -m 0644 devices.tar.gz $(DSDIR)/
30
30
endif
31
31