From owner-freebsd-ports@FreeBSD.ORG Mon Jan 14 20:24:47 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47C4E16A41B for ; Mon, 14 Jan 2008 20:24:47 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.177]) by mx1.freebsd.org (Postfix) with ESMTP id 192C013C45A for ; Mon, 14 Jan 2008 20:24:46 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so4102293waf.3 for ; Mon, 14 Jan 2008 12:24:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=7v4NYgdruRRRJ1PsBopaNUDozzwEPHv2INCXyQhBPcw=; b=Z6+kV/itXOPm3wIGI7F6kHAjWNg11lQIyiIwjqRhtQW5tISA2dSgQ324i3OJhM/HNiDXG9y0x7gri+RHepVISvpObBjco52Kwdo9Nqc8wio6k2kLDloKFc/rAX51YTrxMIuLnDSdanINk44kdhrpln0e/B/P4eZB3OsSSVnHSm4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=c/4cZhOspS0kSVRiOSIybJF0FpCDzEjWFzClwzZ8YHuNnAAeEPf5UygYPu/k5TlPFVG2ugZBg2tH1TNMn5hsnBMBk83odYDP4sF2Zes1iH4/bQ6xXH3zgt/Iv5rbvtIWnwOrINYmxlUlz0/Rp8jM6Bg4s4RZgZCzasVFlozWHMM= Received: by 10.114.75.1 with SMTP id x1mr4317579waa.137.1200340571079; Mon, 14 Jan 2008 11:56:11 -0800 (PST) Received: by 10.114.240.16 with HTTP; Mon, 14 Jan 2008 11:56:11 -0800 (PST) Message-ID: <80f4f2b20801141156v141231d5p65129b83f3d37194@mail.gmail.com> Date: Mon, 14 Jan 2008 14:56:11 -0500 From: "Jim Stapleton" To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Question on error: "Makefile", line 24: Need an operator X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jan 2008 20:24:47 -0000 I'm trying to build a port for FreeBSD, and I get this error when running "Make": "Makefile", line 24: Need an operator make: fatal errors encountered -- cannot continue To my knowledge, everything looks good so far. The line in question is: do-build: (cd ${WRKDIR}/extended_threading/extended_threading/ && \ echo "import sys; import py_compile; for f in sys.argv: py_compile.compile(f)" | python *) Can anyone tell me what I am doing wrong? (operator? huh?) Thanks, -Jim Stapleton sjss@elrond 14:42:07 (2) ~/dev/extended_threading_port > cat Makefile # New ports collection makefile for: py-extended_threading # Date created: 14 Jan 2008 # Whom: James Stapleton # # $FreeBSD$ # PORTNAME= py_extended_threading PORTVERSION= 0.2 CATEGORIES= devel python MASTER_SITES+= http://www.var-dev.net/programming/python/extended_threading/ \ http://www.var-dev.com/programming/python/extended_threading/ \ http://www.var-dev.org/programming/python/extended_threading/ DISTNAME= extended_threading-0_2 EXTRACT_SUFX= .tar.bz2 MAINTAINER= user(sjss) host(var [dash] dev [dot] net) COMMENT= a library to extend pythons threading library USE_PYTHON= 2.3+ do-build: (cd ${WRKDIR}/extended_threading/extended_threading/ && \ echo "import sys; import py_compile; for f in sys.argv: py_compile.compile(f)" | python *) .include