All pastes #2133032 Raw Edit

Miscellany

public text v1 · immutable
#2133032 ·published 2012-03-28 04:11 UTC
rendered paste body
if [ "X$CUSTOMCFLAGS" = "X" ]; then
  echo "No custom C flags for you"
else
  SLKCFLAGS="$CUSTOMCFLAGS"
    #So the same custom flags can be issued on 64 bit and 32 bit.
  if [ "$ARCH" = "x86_64" ]; then
    SLKCFLAGS="$SLKCFLAGS -fPIC"
    LIBDIRSUFFIX="64"
  fi
fi