From owner-freebsd-ports Tue Dec 2 23:39:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA17937 for ports-outgoing; Tue, 2 Dec 1997 23:39:44 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from misery.sdf.com (misery.sdf.com [204.244.210.193]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id XAA17924 for ; Tue, 2 Dec 1997 23:39:40 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom by misery.sdf.com with smtp (Exim 1.73 #1) id 0xd9Fo-0000KP-00; Tue, 2 Dec 1997 23:29:52 -0800 Date: Tue, 2 Dec 1997 23:29:50 -0800 (PST) From: Tom To: Satoshi Asami cc: kiri@kiri.toba-cmt.ac.jp, ports@freebsd.org Subject: Re: Can't compile kdelibs-2.1b In-Reply-To: <199712030629.WAA05059@silvia.HIP.Berkeley.EDU> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Tue, 2 Dec 1997, Satoshi Asami wrote: > * Oh is that true? So people who works on 2.2.5-stable would be shut away > * from kde! > > * I see. For the time bing, people who want to use kde will be > * installed from packages? > > You are contradicting yourself here. :) > > Satoshi (Yes, it works for me, and the package building machine runs -stable) Is your /bin/sh actually bash? Either that, has some one committed some sh fixes in the last month? For example, the following script demonstrates a problem that I see with some configure scripts that scan for the location of some binary via a for loop and "test": #! /bin/sh PATH=/bin:/usr/bin:/sbin IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in $PATH:/usr/local/bin$ac_dummy; do echo "ac_dir is $ac_dir" done produces the following output with /bin/sh: ac_dir is /bin ac_dir is /usr/bin ac_dir is /sbin:/usr/local/bin but with bash: ac_dir is /bin ac_dir is /usr/bin ac_dir is /sbin ac_dir is /usr/local/bin In fact, I eventually broke down and dl'ed the kdelibs to look at the configure script. Sure enough, line 3705 is very similar to my snippet above. Tom