Changeset f2bcc47 in freewrt


Ignore:
Timestamp:
Jun 19, 2006, 12:57:41 AM (19 years ago)
Author:
Thorsten Glaser <tg@…>
Branches:
freewrt_1_0, freewrt_2_0
Children:
01a47f2
Parents:
74592b4
Message:

check for perl

git-svn-id: svn://www.freewrt.org/trunk/freewrt@135 afb5a338-a214-0410-bd46-81f09a774fd1

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • README

    r74592b4 rf2bcc47  
    66
    77Before you can start with the build process, you need to install some tools:
    8 gcc, g++, binutils, patch, gzip, bzip2, flex, bison, make, unzip, and the
    9 zlib and libc headers (usually called libz-dev and glibc-dev on GNU/Linux
    10 systems). The framework checks for the required versions of these tools in
    11 advance, though (to re-issue the checks, use "make prereq").
     8
     9perl, gcc, g++, binutils, patch, gzip, bzip2, flex, bison, make, unzip,
     10and the zlib and libc headers (usually called libz-dev and glibc-dev on
     11GNU/Linux systems). The framework checks for the required versions of
     12these tools in advance, though (to re-issue the checks, use "make
     13prereq").
    1214
    1315Please use "make menuconfig" to choose your embedded system and configure like you
  • scripts/scan-tools.sh

    r74592b4 rf2bcc47  
    181181fi
    182182
     183if ! which perl >/dev/null 2>&1; then
     184        echo You must install Perl to continue.
     185        exit 1
     186fi
     187
     188
    183189cd $topdir
    184190rm -rf lbin/tmp
Note: See TracChangeset for help on using the changeset viewer.