Changeset 626 in MondoRescue for branches


Ignore:
Timestamp:
Jun 7, 2006, 11:27:59 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 neces

sarily defined outside my build process

File:
1 edited

Legend:

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

    r581 r626  
    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
    114115    rm -rf $DOCDIR
    115116fi
    116117
    117118# Special case for Debian family where doc is put elsewhere in the DEB
    118 if [ _"$dfam" = _"debian" ]; then
     119if [ -e /etc/debian_version ]; then
    119120    rm -rf $DOCDIR
    120121fi
Note: See TracChangeset for help on using the changeset viewer.