From owner-freebsd-questions@FreeBSD.ORG Sun Mar 13 22:15:40 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AA7D16A4CF for ; Sun, 13 Mar 2005 22:15:40 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAF8743D54 for ; Sun, 13 Mar 2005 22:15:39 +0000 (GMT) (envelope-from masterkev28@gmail.com) Received: by rproxy.gmail.com with SMTP id r35so1670011rna for ; Sun, 13 Mar 2005 14:15:36 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=NwPGi8rtqZ2OeNQIHebKA4nOy6ESJ4RORXoxK4FvecIYIn22sCKhur18mHk7sfVjM4jNQTDOSkh4vypbhZviFGag8yQ8MdqlbHcFjrGl7wdN0EaF8TZHQmxBR+YlbKm1DjCWhUzU8vhAp1IjxHKe9dLV2aE5k7apsLz/lL506Ng= Received: by 10.38.68.47 with SMTP id q47mr4385350rna; Sun, 13 Mar 2005 14:08:56 -0800 (PST) Received: by 10.38.98.27 with HTTP; Sun, 13 Mar 2005 14:08:56 -0800 (PST) Message-ID: <449b8e71050313140869219505@mail.gmail.com> Date: Sun, 13 Mar 2005 16:08:56 -0600 From: masterkev28 masterkev28 To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: mergemaster problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: masterkev28 masterkev28 List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Mar 2005 22:15:40 -0000 Hello everyone, When I do mergemaster -ia, I get the following errors: *** The directory specified for the temporary root environment, /var/tmp/temproot, exists. This can be a security risk if untrusted users have access to the system. *** Creating the temporary root environment in /var/tmp/temproot.0313.15.35.39 *** /var/tmp/temproot.0313.15.35.39 ready for use *** Creating and populating directory structure in /var/tmp/temproot.0313.15.35.39 "Makefile", line 76: Could not find bsd.endian.mk "Makefile", line 77: Malformed conditional (${TARGET_ENDIANNESS} == "1234") "Makefile", line 77: Need an operator "Makefile", line 80: if-less elif "Makefile", line 80: Need an operator "Makefile", line 83: if-less else "Makefile", line 83: Need an operator "Makefile", line 85: if-less endif "Makefile", line 85: Need an operator make: fatal errors encountered -- cannot continue *** FATAL ERROR: Cannot 'cd' to /usr/src/etc and install files to the temproot environment And I checked the /usr/src/etc/Makefile( version: 1.341 2005/03/03), starting at line 76, it has: .include .if ${TARGET_ENDIANNESS} == "1234" CAP_MKDB_ENDIAN= -l PWD_MKDB_ENDIAN= -L .elif ${TARGET_ENDIANNESS} == "4321" CAP_MKDB_ENDIAN= -b PWD_MKDB_ENDIAN= -B .else CAP_MKDB_ENDIAN= .endif I believe it's the source of error, I tried commenting them out, but mergemaster failed at some point. The file bsd.endian.mk (version 1.2 2005/02/25) is in the path /usr/src/share/mk/ as well. Any idea? Thanks.