* icon: A bit more tweaking to try to get the icon to work. Add new icon. Conflicts: rebuild
13 lines
289 B
Bash
Executable File
13 lines
289 B
Bash
Executable File
#!/usr/bin/env bash
|
|
processor_count=`grep -c "^processor" /proc/cpuinfo`
|
|
count=$((${processor_count} - 1))
|
|
echo "Detected ${processor_count} processors, using ${count}"
|
|
|
|
make distclean
|
|
pushd ..
|
|
./autogen.sh
|
|
popd
|
|
|
|
../configure --prefix=/usr --enable-ipv6 CXXFLAGS="-O0 -g"
|
|
make -kj${count}
|