From owner-freebsd-questions@FreeBSD.ORG Fri Sep 16 23:41:41 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1AC4B16A41F for ; Fri, 16 Sep 2005 23:41:41 +0000 (GMT) (envelope-from fbsdlists@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F05D43D45 for ; Fri, 16 Sep 2005 23:41:39 +0000 (GMT) (envelope-from fbsdlists@gmail.com) Received: by xproxy.gmail.com with SMTP id i31so926wxd for ; Fri, 16 Sep 2005 16:41:38 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Nmjg9XOqyifEggmmh3DE8mqoSMGKClKXe4bEEMudw4ZpsW4jMDBcqdMJUJSaQgY5yhgZfMcC/nZ1x2jpDyOd9EZNACFb85/LGF3G0kXB23BDsVCGDbN95X2T/zFqdR9lA/kOJ++H8xxRA0zzZfi98pIl7tjhnkOF0Ha6ap5KkVk= Received: by 10.70.104.7 with SMTP id b7mr394558wxc; Fri, 16 Sep 2005 16:35:04 -0700 (PDT) Received: by 10.70.67.15 with HTTP; Fri, 16 Sep 2005 16:35:04 -0700 (PDT) Message-ID: <54db4399050916163573ced122@mail.gmail.com> Date: Fri, 16 Sep 2005 19:35:04 -0400 From: Bob Johnson To: Eric Pretorious In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <200509162214.44252.lofi@freebsd.org> Cc: bobo1009@mailtest1.eng.ufl.edu, freebsd-questions@freebsd.org Subject: Re: CUPS, Foomatic, and HPIJS? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: fbsdlists@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2005 23:41:41 -0000 On 9/16/05, Eric Pretorious wrote: > I downloaded the archive (from linuxprinting.org) and *attempted* to inst= all >=20 > the hpijs drivers following the instructions in the USAGE file... >=20 > >Install it after you have installed fommatic-db using the commands (if > >you have downloaded this package from CVS, run "./make_configure" at > >first, for that you will also need the "autoconf" and "aclocal" > >utilities, "aclocal" is in the "automake" package in some > >distributions): > > ./configure > > make > > make install >=20 > ...but step #2 (i.e., `make`) barfed: >=20 > gateway# make > chmod a+rx data-generators/*/hpijs* > install -d db/source/driver > install -d db/source/opt > install -d db/source/printer > cd data-generators; for m in `ls -1`; do cd $m; ./$m-generator; cd ..= ;=20 >=20 > done./CVS-generator: not found > *** Error code 127 >=20 > Stop in /usr/home/eric/foomatic-db-hpijs-1.4-1. >=20 > Any idea what this means? There's NO mention of CVS-generator in either t= he I suspect you need to use "gmake" (the GNU make) instead of "make", which is the BSD make. - Bob