Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Jun 2003 02:05:52 +0200 (CEST)
From:      Lukas Ertl <l.ertl@univie.ac.at>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   bin/53864: [PATCH] typo in /usr/src/Makefile.inc1
Message-ID:  <200306280005.h5S05qNU043701@korben.in.tern>
Resent-Message-ID: <200306280130.h5S1U5Dk068761@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         53864
>Category:       bin
>Synopsis:       [PATCH] typo in /usr/src/Makefile.inc1
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jun 27 18:30:05 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     Lukas Ertl
>Release:        FreeBSD 5.1-CURRENT i386
>Organization:
Vienna University Computer Center
>Environment:
System: FreeBSD korben 5.1-CURRENT FreeBSD 5.1-CURRENT #15: Fri Jun 20 18:17:06 CEST 2003 le@korben:/usr/obj/usr/src/sys/KORBEN i386


	
>Description:

/usr/src/Makefile.inc1 has a typo that wasn't noticed before, because
probably noone ever defines LOCAL_DIRS :-)

>How-To-Repeat:
	
>Fix:

	

--- Makefile.inc1.diff begins here ---
Index: Makefile.inc1
===================================================================
RCS file: /usr/local/bsdcvs/src/Makefile.inc1,v
retrieving revision 1.368
diff -u -r1.368 Makefile.inc1
--- Makefile.inc1	22 Jun 2003 10:01:03 -0000	1.368
+++ Makefile.inc1	27 Jun 2003 23:59:22 -0000
@@ -94,7 +94,7 @@
 # rebuilt before you do them.
 .if defined(LOCAL_DIRS)
 .for _DIR in ${LOCAL_DIRS}
-.if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile)
+.if exists(${.CURDIR}/${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile)
 SUBDIR+= ${_DIR}
 .endif
 .endfor
--- Makefile.inc1.diff ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



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