diff options
-rwxr-xr-x | xib.sh | 3 | ||||
-rwxr-xr-x | xib_profile.conf | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -225,7 +225,8 @@ xib_all () { [ "${#package}" != 0 ] && [ -d "$package" ] && { local package_name="$(basename ${package#/*})" xibsum=$(get_buildfiles_hash $package) - [ -f "$seen/$package_name.xibsum" ] && [ "$(cat "$seen/$package_name.xibsum")" = "$xibsum" ] && { + [ -f "$seen/$package_name.xibsum" ] && \ + [ "$(cat "$seen/$package_name.xibsum")" = "$xibsum" ] && { printf "${BLUE}$package_name${LIGHT_BLUE}...already built!\n" } || { xib_single $name || { diff --git a/xib_profile.conf b/xib_profile.conf index 871c0a3..4938d35 100755 --- a/xib_profile.conf +++ b/xib_profile.conf @@ -12,7 +12,7 @@ export CXXFLAGS="$CFLAGS" export CPPFLAGS="$CFLAGS" export LDFLAGS="-Wl,--as-needed,-O1,--sort-common" export GOFLAGS="-buildmode=pie" -export DFLAGS="-Os" +export DFLAGS="-O2" export HOME=/root export XORG_PREFIX="/usr" |