From owner-freebsd-ports Sun Jul 11 2:25:50 1999 Delivered-To: freebsd-ports@freebsd.org Received: from kaa.kfunigraz.ac.at (KAA16.kfunigraz.ac.at [143.50.16.17]) by hub.freebsd.org (Postfix) with ESMTP id EA5A014E38 for ; Sun, 11 Jul 1999 02:25:35 -0700 (PDT) (envelope-from dada@balu.kfunigraz.ac.at) Received: from balu.kfunigraz.ac.at (balu [143.50.16.16]) by kaa.kfunigraz.ac.at (8.9.2/8.9.2) with ESMTP id LAA10207; Sun, 11 Jul 1999 11:24:47 +0200 (MDT) Received: from localhost.kfunigraz.ac.at (IDENT:rigLYBUbHkVpaaQEK98xjliHN7FEJyt5@BONLINEA64.kfunigraz.ac.at [143.50.36.64]) by balu.kfunigraz.ac.at (8.9.2/8.9.2) with ESMTP id LAA27120; Sun, 11 Jul 1999 11:25:34 +0200 (MDT) Received: from localhost (Gr+NBzXHF9VPxRNI2p7qf7wA299yotvu@localhost.kfunigraz.ac.at [127.0.0.1]) by localhost.kfunigraz.ac.at (8.8.8/x.y.z) with SMTP id LAA14934; Sun, 11 Jul 1999 11:21:55 +0200 (CEST) (envelope-from dada@localhost.kfunigraz.ac.at) Date: Sun, 11 Jul 1999 11:21:52 +0200 (CEST) From: Martin Kammerhofer Reply-To: Martin Kammerhofer To: ejc@bazzle.com Cc: ports@freebsd.org Subject: ORBacus FreeBSD port Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello ejc! You are the maintainer of the FreeBSD ORBacus port. Your port's Makefile has a nasty bug that is frustrating me every time after I have synchronized my ports tree with cvsup. The problem lies in the line .if ${OSVERSION} >= 4 The use of OSVERSION is wrong here. It causes make(1) to abort with an error if you ever try to make ANY maketarget on a 2.2.X system. (It bites me everytime when I do a cd /usr/ports && make readmes to update all the README.html files. They are usually out of sync - even on a freshly cvsupped ports tree!) This is expanded by make(1) to .if 2.2.8 >= 4 which is illegal makefile syntax. Please change this line to .if ${OSRELEASE} >= 400000 and everything will be fine for FreeBSD x.y.z AND FreeBSD x.y users. TIA, Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message