Changeset 625 in MondoRescue


Ignore:
Timestamp:
Jun 7, 2006, 10:55:00 AM (18 years ago)
Author:
bcornec
Message:
  • Fix a bug for ia64 build in mindi where locallib was undefined
  • Fix a bug for SuSE and Debian where $dfam was used in install.sh but not necessarily defined outside my build process
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0.8/mindi/install.sh

    r519 r625  
    3838# For the moment, we don't build specific x86_64 busybox binaries
    3939echo $ARCH | grep -x "x86_64" &> /dev/null && ARCH=i386 && locallib=$local/lib64
     40echo $ARCH | grep -x "ia64" &> /dev/null && locallib=$local/lib
    4041export ARCH
    4142
     
    111112
    112113# Special case for SuSE family where doc is put elsewhere in the RPM
    113 if [ _"$dfam" = _"suse" ]; then
     114if [ -e /etc/SuSE-release ]; then
     115    rm -rf $DOCDIR
     116fi
     117
     118# Special case for Debian family where doc is put elsewhere in the DEB
     119if [ -e /etc/debian_version ]; then
    114120    rm -rf $DOCDIR
    115121fi
Note: See TracChangeset for help on using the changeset viewer.