Subject: src/libexec/Makefile error (#417) Index: libexec/Makefile 2.11BSD Description: Performing a "make world" of the system from source fails when the src/libexec directory is entered. Repeat-By: The long way: cd /usr/src make The short way: cd /usr/src/libexec make Note the error: Make: line 12: syntax error. Stop. Fix: Periodically the system is recompiled from source to find exactly this type of problem. Over time undetected (because the test of compiling entire hierachies is not done often enough) errors creep into the Makefiles. In this case a missing backslash was detected. Oh - it takes 23 hours for an 11/44 (max of 4mb memory, Fuji Eagle and an Emulex MSCP adaptor) to recompile the entire system. An 11/73 takes about 15-20% longer (about 27 hours) To apply this update cut where indicated and save to a file (/tmp/417). Then: patch -p0 < /tmp/417 Nothing needs to be recompiled or installed. As always this and previous updates to 2.11BSD are available via anonymous FTP to either FTP.IIPO.GTEGSC.COM or MOE.2BSD.COM in the directory /pub/2.11BSD. ---------------------------cut here-------------------------- *** /usr/src/libexec/Makefile.old Fri Feb 19 17:22:00 1999 --- /usr/src/libexec/Makefile Fri May 7 19:40:00 1999 *************** *** 1,7 **** # # Steven Schultz - put in the public domain 1996/6/25. # ! # @(#)Makefile 1.5 (2.11BSD) 1999/2/19 # DESTDIR= CFLAGS= -O --- 1,7 ---- # # Steven Schultz - put in the public domain 1996/6/25. # ! # @(#)Makefile 1.6 (2.11BSD) 1999/5/7 # DESTDIR= CFLAGS= -O *************** *** 8,14 **** SEPFLAG= -i TAGSFILE=tags ! SUBDIR= acctd comsat ctimed fingerd ftpd getNAME getty identd makekey popper rexecd rlogind rshd talkd tcpd telnetd tftpd all: ${SUBDIR} --- 8,14 ---- SEPFLAG= -i TAGSFILE=tags ! SUBDIR= acctd comsat ctimed fingerd ftpd getNAME getty identd makekey \ popper rexecd rlogind rshd talkd tcpd telnetd tftpd all: ${SUBDIR} *** /VERSION.old Wed May 5 20:00:29 1999 --- /VERSION Fri May 7 19:40:01 1999 *************** *** 1,5 **** ! Current Patch Level: 416 ! Date: May 5, 1999 2.11 BSD ============ --- 1,5 ---- ! Current Patch Level: 417 ! Date: May 7, 1999 2.11 BSD ============