Changeset c05cc75 for general/sysutils


Ignore:
Timestamp:
12/28/2010 11:40:22 PM (13 years ago)
Author:
Ken Moffat <ken@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
d1524623
Parents:
07b2510
Message:

Fix unzip for non-i?86 machines.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@8744 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/sysutils/unzip.xml

    r07b2510 rc05cc75  
    181181    <application>UnZip</application> by running the following commands:</para> -->
    182182
    183 <screen><userinput>make -f unix/Makefile linux</userinput></screen>
     183<screen><userinput>case `uname -m` in
     184  i?86)
     185    make -f unix/Makefile linux
     186    ;;
     187  *)
     188    make -f unix/Makefile linux_noasm
     189    ;;
     190esac</userinput></screen>
    184191
    185192    <para>To test the results, issue: <command>make check</command>.</para>
     
    194201    <title>Command Explanations</title>
    195202
    196     <para><parameter>linux</parameter>:
    197     This target in the <filename>Makefile</filename> makes assumptions
    198     that are useful for a Linux system when compiling the executables.
    199     To obtain alternatives to this target, use <command>make list</command></para>
     203    <para><parameter>linux, linux_noasm</parameter>:
     204    The linux target in the <filename>Makefile</filename> makes assumptions
     205    that are useful for a Linux system when compiling the executables, but
     206    also uses some 32-bit x86 assembler code. The linux_noasm target will
     207    build on all linux hosts. To obtain alternatives to these targets, use
     208    <command>make -f unix/Makefile list</command></para>
    200209
    201210    <!-- <para><parameter>LOCAL_UNZIP=...</parameter>:
Note: See TracChangeset for help on using the changeset viewer.