123456789101112131415161718 |
- cd $tmpdir
-
- # Downloading TCC source
- if [ ! -f "$bash" ]; then
- echo "Downloading bash sources..."
- wget $bashmirror/$bash
- tar -xf $bash
- fi
- cd $bashsrcdir
-
- ./configure --prefix=$freondir --without-bash-malloc
- make -j$corecount
- make install
- cd ..
|