From owner-freebsd-questions@FreeBSD.ORG Sun Mar 13 23:50:05 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 B217E16A4CF for ; Sun, 13 Mar 2005 23:50:05 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5B1243D31 for ; Sun, 13 Mar 2005 23:50:04 +0000 (GMT) (envelope-from masterkev28@gmail.com) Received: by rproxy.gmail.com with SMTP id a41so1621663rng for ; Sun, 13 Mar 2005 15:49:55 -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=c9CssQ0BGC/p6fp/7t3SDgAqg5tI31oS1z2W6Q6o7f0xGeBwTnQ/guLmwwiUALxN1Zsv8PmKpipxABfkCAy0b+UvColMmBKZAqHplYeNYLLruttmONfqoS5Bi7PBrs+VLDj0O4LUrIxARIF9yy8+ixP1/FUkxljaBMWT77Hok1E= Received: by 10.38.161.42 with SMTP id j42mr536720rne; Sun, 13 Mar 2005 14:49:55 -0800 (PST) Received: by 10.38.98.27 with HTTP; Sun, 13 Mar 2005 14:49:54 -0800 (PST) Message-ID: <449b8e710503131449590b91f6@mail.gmail.com> Date: Sun, 13 Mar 2005 16:49:54 -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 -ia failed on some errors 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 23:50:05 -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/02), 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.