On Monday 27 March 2006 22:24, Warren Young wrote:
> George13p wrote:
> > linux:~/mysql++/mysql++-2.1.0 # ./bootstrap
> > + ./rebake
> > + bakefilize
> > ./rebake: line 3: bakefilize: command not found
>
> I don't see why you need to run bootstrap, but if you really do, just
> install Bakefile. If it's not part of SuSE, get it here:
We dont until we want to build the RPM.
Where you have now hard-coded a call to bootstrap.
%prep
%setup -q
./bootstrap noexamples --prefix=/usr --disable-dependency-tracking
I have put mine back as of vs 1.7.? which builds fine.
%prep
%setup -q
%ifarch i386
./configure --prefix=/usr --disable-examples --disable-dependency-tracking
%endif
%ifarch x86_64
./configure --prefix=/usr --with-mysql-lib=/usr/lib64 --disable-examples \
--disable-dependency-tracking
%endif
I resorted to this because I couldn't get bakefile to install.
Giles