summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2000-09-06 09:27:25 +0000
committerobrien <obrien@FreeBSD.org>2000-09-06 09:27:25 +0000
commit7b071840d5feb881b3b280460eb0f43089c9de5d (patch)
treebe47ea8989f246a57ecfc1139d56519efedec471
parent89470e5786b509e1f679fccdf223aceeda04ab8a (diff)
downloadFreeBSD-src-7b071840d5feb881b3b280460eb0f43089c9de5d.zip
FreeBSD-src-7b071840d5feb881b3b280460eb0f43089c9de5d.tar.gz
DESTDIR'ify the device.hints checking code.
-rw-r--r--sys/conf/Makefile.alpha4
-rw-r--r--sys/conf/Makefile.i3864
-rw-r--r--sys/conf/Makefile.pc984
-rw-r--r--sys/conf/Makefile.powerpc4
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/conf/Makefile.alpha b/sys/conf/Makefile.alpha
index 1d57dc5..879feb2 100644
--- a/sys/conf/Makefile.alpha
+++ b/sys/conf/Makefile.alpha
@@ -262,10 +262,10 @@ kernel-tags:
kernel-install kernel-install.debug:
@if [ ! -f ${DESTDIR}/boot/device.hints ] ; then \
- echo "You must set up a /boot/device.hints file first." ; \
+ echo "You must set up a ${DESTDIR}/boot/device.hints file first." ; \
exit 1 ; \
fi
- @if [ x"`grep device.hints /boot/defaults/loader.conf /boot/loader.conf`" = "x" ]; then \
+ @if [ x"`grep device.hints ${DESTDIR}/boot/defaults/loader.conf ${DESTDIR}/boot/loader.conf`" = "x" ]; then \
echo "You must activate /boot/device.hints in loader.conf." ; \
exit 1 ; \
fi
diff --git a/sys/conf/Makefile.i386 b/sys/conf/Makefile.i386
index c7a44b3..c871f52 100644
--- a/sys/conf/Makefile.i386
+++ b/sys/conf/Makefile.i386
@@ -217,10 +217,10 @@ kernel-tags:
kernel-install kernel-install.debug:
@if [ ! -f ${DESTDIR}/boot/device.hints ] ; then \
- echo "You must set up a /boot/device.hints file first." ; \
+ echo "You must set up a ${DESTDIR}/boot/device.hints file first." ; \
exit 1 ; \
fi
- @if [ x"`grep device.hints /boot/defaults/loader.conf /boot/loader.conf`" = "x" ]; then \
+ @if [ x"`grep device.hints ${DESTDIR}/boot/defaults/loader.conf ${DESTDIR}/boot/loader.conf`" = "x" ]; then \
echo "You must activate /boot/device.hints in loader.conf." ; \
exit 1 ; \
fi
diff --git a/sys/conf/Makefile.pc98 b/sys/conf/Makefile.pc98
index f593e09..0d93180 100644
--- a/sys/conf/Makefile.pc98
+++ b/sys/conf/Makefile.pc98
@@ -220,10 +220,10 @@ kernel-tags:
kernel-install kernel-install.debug:
@if [ ! -f ${DESTDIR}/boot/device.hints ] ; then \
- echo "You must set up a /boot/device.hints file first." ; \
+ echo "You must set up a ${DESTDIR}/boot/device.hints file first." ; \
exit 1 ; \
fi
- @if [ x"`grep device.hints /boot/defaults/loader.conf /boot/loader.conf`" = "x" ]; then \
+ @if [ x"`grep device.hints ${DESTDIR}/boot/defaults/loader.conf ${DESTDIR}/boot/loader.conf`" = "x" ]; then \
echo "You must activate /boot/device.hints in loader.conf." ; \
exit 1 ; \
fi
diff --git a/sys/conf/Makefile.powerpc b/sys/conf/Makefile.powerpc
index c7a44b3..c871f52 100644
--- a/sys/conf/Makefile.powerpc
+++ b/sys/conf/Makefile.powerpc
@@ -217,10 +217,10 @@ kernel-tags:
kernel-install kernel-install.debug:
@if [ ! -f ${DESTDIR}/boot/device.hints ] ; then \
- echo "You must set up a /boot/device.hints file first." ; \
+ echo "You must set up a ${DESTDIR}/boot/device.hints file first." ; \
exit 1 ; \
fi
- @if [ x"`grep device.hints /boot/defaults/loader.conf /boot/loader.conf`" = "x" ]; then \
+ @if [ x"`grep device.hints ${DESTDIR}/boot/defaults/loader.conf ${DESTDIR}/boot/loader.conf`" = "x" ]; then \
echo "You must activate /boot/device.hints in loader.conf." ; \
exit 1 ; \
fi
OpenPOWER on IntegriCloud