[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/Makefile between version 1.193 and 1.194

version 1.193, 2002/12/21 16:43:33 version 1.194, 2002/12/26 12:01:48
Line 184  build:
Line 184  build:
 #  #
   
 distribution buildworld:  distribution buildworld:
 .if make(buildworld) && (${DESTDIR} == "" || ${DESTDIR} == "/")  .if make(buildworld) && \
       (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
         @echo "Won't make ${.TARGET} with DESTDIR=/"          @echo "Won't make ${.TARGET} with DESTDIR=/"
         @false          @false
 .endif  .endif
Line 206  HOST_UNAME_S!= uname -s
Line 207  HOST_UNAME_S!= uname -s
 HOST_UNAME_M!=  uname -m  HOST_UNAME_M!=  uname -m
   
 installworld:  installworld:
 .if (${DESTDIR} == "" || ${DESTDIR} == "/")  .if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
         @echo "Can't make ${.TARGET} to DESTDIR=/"          @echo "Can't make ${.TARGET} to DESTDIR=/"
         @false          @false
 .endif  .endif

Legend:
Removed from v.1.193  
changed lines
  Added in v.1.194

CVSweb <webmaster@jp.NetBSD.org>