diff options
author | Joey Hess <joeyh@debian.org> | 2010-09-26 17:16:37 +0000 |
---|---|---|
committer | Joey Hess <joeyh@debian.org> | 2010-09-26 17:16:37 +0000 |
commit | 26ae73c1291ff8d282f7ca7f6e1d4df2e5549759 (patch) | |
tree | d2115da72137c77be41b740571fd51cdf3850384 /Makefile | |
parent | 655f833be4a8d2bd110bd3c0caa2fc17af119988 (diff) | |
download | debootstrap-26ae73c1291ff8d282f7ca7f6e1d4df2e5549759.tar.gz |
/dev/MAKEDEV cannot be relied on (udev likes to make it a symlink to
true). Always use /sbin/MAKEDEV. Closes: #598080
r64850
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ # avoid dpkg-dev dependency; fish out the version with sed VERSION := $(shell sed 's/.*(\(.*\)).*/\1/; q' debian/changelog) -MAKEDEV := $(shell if [ -e /dev/MAKEDEV ]; then echo /dev/MAKEDEV; else echo /sbin/MAKEDEV; fi) +MAKEDEV := /sbin/MAKEDEV all: devices.tar.gz clean: |