From: Ted Lemon Date: Tue, 23 Feb 1999 18:08:50 +0000 (+0000) Subject: Print warning about dhcpd.conf move when installing on Linux. X-Git-Tag: V2-BETA-1-PATCH-15~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6ef30d8beb4effa6e6031b94cee05039acbc6b1b;p=thirdparty%2Fdhcp.git Print warning about dhcpd.conf move when installing on Linux. --- diff --git a/Makefile.dist b/Makefile.dist index d76f4287a..e2dc4e28e 100644 --- a/Makefile.dist +++ b/Makefile.dist @@ -37,12 +37,42 @@ all: echo "Making all in $$dir"; \ (cd $$dir; $(MAKE) all) || exit 1; \ done + @if [ `uname` = Linux ]; then \ + echo; \ + echo " !!!! WARNING !!!!"; \ + echo ; \ + echo "The default location for the dhcpd.leases file has \ +changed!!!"; \ + echo; \ + echo "It is now in /var/state/dhcp. If you are not"; \ + echo "installing this for the first time, please move your"; \ + echo "lease database to the new location before using this"; \ + echo "software."; \ + echo; \ + echo " !!!! WARNING !!!!"; \ + echo; \ + fi install: @for dir in ${SUBDIRS}; do \ echo "Installing in $$dir"; \ (cd $$dir; $(MAKE) install) || exit 1; \ done + @if [ `uname` = Linux ]; then \ + echo; \ + echo " !!!! WARNING !!!!"; \ + echo ; \ + echo "The default location for the dhcpd.leases file has \ +changed!!!"; \ + echo; \ + echo "It is now in /var/state/dhcp. If you are not"; \ + echo "installing this for the first time, please move your"; \ + echo "lease database to the new location before using this"; \ + echo "software."; \ + echo; \ + echo " !!!! WARNING !!!!"; \ + echo; \ + fi clean: @for dir in ${SUBDIRS}; do \