Details
-
Bug
-
Resolution: Fixed
-
Minor
-
Lustre 2.1.2
-
Ubuntu 10.04.1 LTS x64, running on Dell severs.
-
3
-
10078
Description
Attempting to clone and build debs from the git repository fails to complete the build.
The failing build script is :
#!/bin/sh
git clone -b b2_1 git://git.whamcloud.com/fs/lustre-release.git
cd lustre-release
sh autogen.sh
./configure
make debs
This seems to fail building the client modules, log of failing build attached.
Modifying the build script to :
#!/bin/sh
git clone -b b2_1 git://git.whamcloud.com/fs/lustre-release.git
cd lustre-release
sh autogen.sh
./configure --enable-dist
make dist
rm -rf BUILD
mkdir BUILD
cd BUILD
ln ../lustre-2.1.2.tar.gz lustre_2.1.2.orig.tar.gz
tar zxf ../lustre-2.1.2.tar.gz
cd lustre-2.1.2
./configure
make debs
allows the build to complete successfully
Cheers.
Phill.