Rats. Missed this in testing. (My fault). I think someone has fixed this already by escaping the $-sign. The issue is controlling when the $(EXEEXT) gets expanded.
PG > -----Original Message----- > From: Alexander Bokovoy [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 05, 2002 6:23 AM > To: [EMAIL PROTECTED] > Subject: Re: Patch for 3_0 configure.in ?? > > > On Thu, Dec 05, 2002 at 11:44:36AM +0100, > [EMAIL PROTECTED] wrote: > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA1 > > > > Hi! > > > > I've never done anything in configure.in. What about the following? > This is correct. I'm also seeing these "EXEEXT: no such file > or directory" > responses. $(EXEEXT) in /bin/sh != $(EXEEXT) in Make. > > > > Index: configure.in > > =================================================================== > > RCS file: /kunden/vl/cvs/samba/source/configure.in,v > > retrieving revision 1.300.2.25 > > diff -u -r1.300.2.25 configure.in > > - --- configure.in 2002/12/04 19:47:01 1.300.2.25 > > +++ configure.in 2002/12/05 10:43:37 > > @@ -3054,8 +3054,8 @@ > > AC_MSG_RESULT(yes) > > AC_DEFINE(WITH_WINBIND,1,[Whether to build winbind]) > > > > - - EXTRA_BIN_PROGS="$EXTRA_BIN_PROGS bin/wbinfo$(EXEEXT)" > > - - EXTRA_SBIN_PROGS="$EXTRA_SBIN_PROGS bin/winbindd$(EXEEXT)" > > + EXTRA_BIN_PROGS="$EXTRA_BIN_PROGS bin/wbinfo$EXEEXT" > > + EXTRA_SBIN_PROGS="$EXTRA_SBIN_PROGS bin/winbindd$EXEEXT" > > if test x"$BLDSHARED"= x"true"; then > > SHLIB_PROGS="$SHLIB_PROGS > nsswitch/libnss_winbind.so" > > if test x"$with_pam"= x�es"; then > > > > -- > / Alexander Bokovoy > --- > Do not overtax your powers. >
