summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2011-08-10 12:00:42 (GMT)
committerColin Watson <cjwatson@debian.org>2011-08-10 12:00:42 (GMT)
commitd7cccc36a992184ea59690342b767d4633d04d52 (patch)
tree11bb68e6d25c31f21ad6c69046e9fd2abf2836fa /Makefile
parent5eb2f3dfcf3c3d87fba71800cebffcac9b85ef93 (diff)
downloaddebootstrap-d7cccc36a992184ea59690342b767d4633d04d52.zip
debootstrap-d7cccc36a992184ea59690342b767d4633d04d52.tar.gz
debootstrap-d7cccc36a992184ea59690342b767d4633d04d52.tar.bz2
Don't build devices.tar.gz if building on GNU/kFreeBSD (closes: #637297).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a389191..6f70f35 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ VERSION := $(shell sed 's/.*(\(.*\)).*/\1/; q' debian/changelog)
MAKEDEV := /sbin/MAKEDEV
-ifneq ($(shell uname),GNU)
+ifeq ($(shell uname),Linux)
all: devices.tar.gz
else
all:
@@ -25,7 +25,7 @@ install:
chown root:root $(DESTDIR)/usr/sbin/debootstrap
chmod 0755 $(DESTDIR)/usr/sbin/debootstrap
-ifneq ($(shell uname),GNU)
+ifeq ($(shell uname),Linux)
install -o root -g root -m 0644 devices.tar.gz $(DSDIR)/
endif