Changeset 0b50d90 in freewrt


Ignore:
Timestamp:
Jun 18, 2006, 9:35:32 PM (19 years ago)
Author:
Thorsten Glaser <tg@…>
Branches:
freewrt_1_0, freewrt_2_0
Children:
5b558a0
Parents:
aa3858b
Message:

unhook sed build for bsd

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • toolchain/Makefile

    raa3858b r0b50d90  
    11# Main makefile for the toolchain
    22include $(TOPDIR)/rules.mk
    3 TARGETS:=sed binutils gcc uClibc ipkg-utils gdb libnotimpl utils lzma
     3
     4ifeq ($(shell [[ "$(OStype)" = *BSD ]] && echo 1),)
     5BUILD_SED:=sed
     6BUILD_SED_DEP:=sed-install
     7else
     8BUILD_SED:=
     9BUILD_SED_DEP:=
     10endif
     11
     12TARGETS:=$(BUILD_SED) binutils gcc uClibc ipkg-utils gdb libnotimpl utils lzma
    413
    514TARGETS_INSTALL:=$(patsubst %,%-install,$(TARGETS))
     
    1019clean: $(TARGETS_CLEAN)
    1120
    12 uClibc-prepare: kernel-headers-prepare sed-install
     21uClibc-prepare: kernel-headers-prepare $(BUILD_SED_DEP)
    1322binutils-prepare: uClibc-prepare
    1423gcc-prepare: binutils-install
Note: See TracChangeset for help on using the changeset viewer.