Skip to content

Commit

Permalink
Another bugfix for 64 bit COMPCHOICE
Browse files Browse the repository at this point in the history
  • Loading branch information
01micko committed Oct 5, 2015
1 parent fc263cb commit 2e213a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion woof-code/3builddistro
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ if [ "$MKSQUASHFS" = "mksquashfs4.2" ];then #110713
if [ "$XZCHOICE" ];then
echo "...xz chosen"
case $RARCH in
x86_64) COMPCHOICE='-comp xz -Xbcj ia32 -b 512K' ;;
x86_64) COMPCHOICE='-comp xz -Xbcj ia64 -b 512K' ;;
*) COMPCHOICE='-comp xz -Xbcj x86 -b 512K' ;;

This comment has been minimized.

Copy link
@dimkr

dimkr Oct 6, 2015

Contributor

ia64 is Itanium - the right value for x86_64 is x86 too

This comment has been minimized.

Copy link
@01micko

01micko via email Oct 6, 2015

Author Contributor
esac
else
Expand Down
4 changes: 2 additions & 2 deletions woof-code/3builddistro-Z
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ echo
#140615
MKSQUASHFS=mksquashfs #use running system's 140619
case $RARCH in
x86_64) COMPCHOICE='-comp xz -Xbcj ia32 -b 512K' ;;
*) COMPCHOICE='-comp xz -Xbcj x86 -b 512K' ;;
x86_64) COMPCHOICE='-comp xz -Xbcj ia64 -b 512K' ;;
*) COMPCHOICE='-comp xz Xbcj -x86 -b 512K' ;;

This comment has been minimized.

Copy link
@dimkr

dimkr Oct 6, 2015

Contributor

Xbcj -x86 should be replaced with -Xbcj x86

esac
#110823
echo
Expand Down

0 comments on commit 2e213a2

Please sign in to comment.