diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-06-05 16:21:01 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-06-05 16:21:01 +0000 |
commit | a294f7445c46f0cde8fc1a0f55daaa9ffd673584 (patch) | |
tree | e0d613c29358064e18fbe4148a392cbbfe6b8b30 /scripts | |
parent | 8f662730b47c01ad395998c9d5aedbd57bb16b99 (diff) | |
download | anaconda-a294f7445c46f0cde8fc1a0f55daaa9ffd673584.tar.gz anaconda-a294f7445c46f0cde8fc1a0f55daaa9ffd673584.tar.xz anaconda-a294f7445c46f0cde8fc1a0f55daaa9ffd673584.zip |
fix the paths
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/mk-images | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/mk-images b/scripts/mk-images index b06e14463..09a9864f6 100755 --- a/scripts/mk-images +++ b/scripts/mk-images @@ -496,7 +496,8 @@ EOF if [ -e $lib ]; then cp -df $lib $MBD_DIR/$LIBDIR/ ; fi done - if [ -e $IMGPATH/lib/ld-*.so* ]; then cp -df $IMGPATH/lib/ld-*.so.* $MBD_DIR/lib/ ; fi + if [ -e $IMGPATH/lib/ld64.so* ]; then cp -df $IMGPATH/lib/ld64.so.* $MBD_DIR/lib/ ; fi + if [ -e $IMGPATH/lib64/ld64.so* ]; then cp -df $IMGPATH/lib64/ld64.so.* $MBD_DIR/lib/ ; fi mkdir -p $MBD_DIR/usr/$LIBDIR for lib in $IMGPATH/usr/$LIBDIR/libkrb5.so* \ |