#!/bin/bash

# somehow detect if this is a lib or lib64 system

LIB=`rpm -E '%_lib'`

if [ -z $LIB ] ; then
    LIB="lib"
fi

echo $LIB
