Blame SOURCES/uuid-config-wrapper

1e395e
#!/bin/sh
1e395e
ARCH=32
1e395e
ARCH2=64
1e395e
LIBDIR1=/usr/lib
1e395e
LIBDIR2=/usr/lib64
1e395e
LIBFILE=libossp-uuid.so
1e395e
case $(uname -m) in
1e395e
    x86_64 | sparc64 | s390x | ppc64)
1e395e
       LIBDIR1=/usr/lib64
1e395e
       LIBDIR2=/usr/lib
1e395e
       ARCH=64
1e395e
       ARCH2=32
1e395e
       ;;
1e395e
esac
1e395e
if [ ! -x "$LIBDIR1/$LIBFILE" ]; then
1e395e
  if [ ! -x "$LIBDIR2/$LIBFILE" ]; then
1e395e
    echo "Library not found: $LIBFILE" >&2
1e395e
  else
1e395e
    ARCH=$ARCH2
1e395e
  fi
1e395e
fi