Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Feb 1999 14:30:02 -0800 (PST)
From:      Bill Fenner <fenner@parc.xerox.com>
To:        freebsd-bugs@FreeBSD.ORG
Subject:   Re: misc/9913: make release would fail for lack of /etc/resolv.conf or $DISTFILES/ 
Message-ID:  <199902042230.OAA05935@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR misc/9913; it has been noted by GNATS.

From: Bill Fenner <fenner@parc.xerox.com>
To: jin@george.lbl.gov
Cc: freebsd-gnats-submit@FreeBSD.ORG
Subject: Re: misc/9913: make release would fail for lack of /etc/resolv.conf or $DISTFILES/ 
Date: Thu, 4 Feb 1999 14:24:19 PST

 In message <199902042140.NAA03940@freefall.freebsd.org>you write:
 > Interesting! The '-' line and '+' lines are exactly same.
 > What is changed?
 
 The return value to make, which determines whether or not it continues.
 
 mango% cat makefile
 a:
         [ -f /tmp/nosuch ] && echo hi
         echo Won't get here!
 
 b:
         if [ -f /tmp/nosuch ]; then \
                 echo hi; \
         fi
         @echo Got here!
 mango% make a
 [ -f /tmp/nosuch ] && echo hi
 *** Error code 1
 
 Stop.
 mango% make b
 if [ -f /tmp/nosuch ]; then  echo hi;  fi
 Got here!
 
   Bill

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199902042230.OAA05935>