Changeset 6be9a4d9 in freewrt for package/mksh


Ignore:
Timestamp:
Jul 27, 2006, 2:08:18 PM (19 years ago)
Author:
Thorsten Glaser <tg@…>
Branches:
freewrt_1_0, freewrt_2_0
Children:
bc417a4
Parents:
601a699
Message:

let the user decide which of the available shells he
wants as /bin/sh - not only these included with busybox

(ash and mksh are probably the only ones which will
work, but like this I won't affect any existing con-
figuration)

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • package/mksh/Makefile

    r601a699 r6be9a4d9  
    55PKG_NAME=               mksh
    66PKG_VERSION=            27.4
    7 PKG_RELEASE=            4
     7PKG_RELEASE=            5
    88PKG_SOURCE=             ${PKG_NAME}-R27e.cpio.gz
    99PKG_MD5SUM=             2eeb5c5fab32cc7a20ca3c7c2c6fda46
     
    4141        $(CP) $(WRKINST)/bin/mksh $(IDIR_MKSH)/bin/
    4242        $(RSTRIP) $(IDIR_MKSH)
     43ifeq (${FWRT_PACKAGE_MKSH_AS_BINSH},y)
     44        cd $(IDIR_MKSH)/bin/; ln -sf mksh sh
     45endif
     46ifeq (${FWRT_PACKAGE_MKSH_AS_BINASH},y)
     47        cd $(IDIR_MKSH)/bin/; ln -sf mksh ash
     48endif
    4349        $(IPKG_BUILD) $(IDIR_MKSH) $(PACKAGE_DIR)
Note: See TracChangeset for help on using the changeset viewer.