Changeset aa3858b in freewrt for rules.mk


Ignore:
Timestamp:
Jun 18, 2006, 9:32:09 PM (19 years ago)
Author:
Thorsten Glaser <tg@…>
Branches:
freewrt_1_0, freewrt_2_0
Children:
0b50d90
Parents:
3c7fa36
Message:

Do not use the GNU sed just built at all on BSD.
We believe our host sed(1) is good enough; the
GNU one has "issues" at least on MirBSD...

GNU sed build will be made dependent on this later.

agreed wbx@

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • rules.mk

    r3c7fa36 raa3858b  
    110110STRIP:=$(STAGING_DIR)/bin/$(OPTIMIZE_FOR_CPU)-linux-uclibc-strip
    111111PATCH=$(SCRIPT_DIR)/patch-kernel.sh
     112ifeq ($(shell [[ "$(OStype)" = *BSD ]] && echo 1),)
    112113SED:=$(STAGING_DIR)/bin/sed -i -e
     114else
     115SED:=sed -i -e
     116endif
    113117LINUX_DIR:=$(BUILD_DIR)/linux
    114118LINUX_HEADERS_DIR:=$(TOOL_BUILD_DIR)/linux
Note: See TracChangeset for help on using the changeset viewer.