Changeset 2644

Show
Ignore:
Timestamp:
05/23/07 18:27:45 (2 years ago)
Author:
tg
Message:

forgot one

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/package/busybox/Makefile

    r2642 r2644  
    99PKG_NAME:=              busybox 
    1010PKG_VERSION:=           1.4.2 
    11 PKG_RELEASE:=           13 
     11PKG_RELEASE:=           14 
    1212PKG_MD5SUM:=            b4c61fb15642be9dde20e8493788c585 
    1313PKG_SOURCE:=            $(PKG_NAME)-$(PKG_VERSION).tar.bz2 
  • trunk/freewrt/package/busybox/ipkg/busybox.postinst

    r2638 r2644  
    1515                        test x"$inetd" = x"NO" && exit 0 
    1616                        test -e /etc/inetd.conf || exit 0 
    17                         exec $0 start 
     17                        exec sh $0 start 
    1818                        ;; 
    1919                start) 
     
    2626                        ;; 
    2727                restart) 
    28                         $0 stop 
    29                         exec $0 start 
     28                        sh $0 stop 
     29                        exec sh $0 start 
    3030                        ;; 
    3131                *)