summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCyril Brulebois <kibi@debian.org>2015-05-16 19:52:49 (GMT)
committerCyril Brulebois <kibi@debian.org>2015-05-16 19:52:49 (GMT)
commit7003b9b3a4718f4a80b18cd8eb491b9358622a6d (patch)
treeed48ad1190ff633505876e852d78d429eac25bd4
parent97e4068c65ef369975bb3d1ebd2e814832fdcdfc (diff)
downloaddebootstrap-7003b9b3a4718f4a80b18cd8eb491b9358622a6d.zip
debootstrap-7003b9b3a4718f4a80b18cd8eb491b9358622a6d.tar.gz
debootstrap-7003b9b3a4718f4a80b18cd8eb491b9358622a6d.tar.bz2
Make it possible to override the MAKEDEV variable (Closes: #734743).
Thanks, Wookey!
-rw-r--r--Makefile2
-rw-r--r--debian/changelog2
2 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c2d93aa..bc62fca 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
VERSION := $(shell sed 's/.*(\(.*\)).*/\1/; q' debian/changelog)
DATE := $(shell sed -n '/^ -- /{s/.*> \(.*\)/\1/p;q}' debian/changelog)
-MAKEDEV := /sbin/MAKEDEV
+MAKEDEV ?= /sbin/MAKEDEV
ifeq ($(shell uname),Linux)
all: devices.tar.gz
diff --git a/debian/changelog b/debian/changelog
index 8c467cf..44f3a7a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,8 @@ debootstrap (1.0.69) UNRELEASED; urgency=medium
mirror happens (Closes: #661501, #733179, #775454).
* Switch default mirror from ftp.us.debian.org to the new, official
http redirector service: httpredir.debian.org
+ * Make it possible to override the MAKEDEV variable (Closes: #734743).
+ Thanks, Wookey!
-- Cyril Brulebois <kibi@debian.org> Thu, 14 May 2015 23:52:52 +0200