diff options
author | Bill Nottingham <notting@redhat.com> | 2009-06-26 14:31:58 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2009-06-26 14:31:58 -0400 |
commit | 35a238e45ff5cb0ea2a3ba24736a408601b97789 (patch) | |
tree | f3598f466deefd9695c4781cdecbf6636d3bcfa8 /scripts/scrubtree | |
parent | a7d8f0a6f6f6cc13d6b9862adc2881bdaa19558f (diff) | |
download | anaconda-35a238e45ff5cb0ea2a3ba24736a408601b97789.tar.gz anaconda-35a238e45ff5cb0ea2a3ba24736a408601b97789.tar.xz anaconda-35a238e45ff5cb0ea2a3ba24736a408601b97789.zip |
Set LIBDIR appropriately on PPC64.
Diffstat (limited to 'scripts/scrubtree')
-rwxr-xr-x | scripts/scrubtree | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/scrubtree b/scripts/scrubtree index 16f445c4a..adaa18b6d 100755 --- a/scripts/scrubtree +++ b/scripts/scrubtree @@ -34,7 +34,7 @@ p=$1 ARCH=`uname -m | sed -e 's/i.86/i386/'` -if [ $ARCH = x86_64 -o $ARCH = s390x ]; then +if [ $ARCH = x86_64 -o $ARCH = s390x -o $ARCH = ppc64 ]; then LIBDIR=lib64 else LIBDIR=lib |