Changeset 302

Show
Ignore:
Timestamp:
07/21/06 01:17:50 (6 years ago)
Author:
tg
Message:

almost entirely revert r296
more "cleanup after wbx" follows, after discussion in IRC

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/package/rules.mk

    r296 r302  
    11# invoke ipkg with configuration in $(STAGING_DIR)/etc/ipkg.conf  
    22 
    3 WRKDIR?=        ${PKG_BUILD_DIR} 
     3WRKDIR?=        ${PKG_BUILD_DIR}/.. 
    44DISTFILES?=     ${DL_DIR}/${PKG_SOURCE} 
    55 
  • trunk/freewrt/rules.mk

    r300 r302  
    132132 
    133133EXTRACT_CMD=    mkdir -p ${WRKDIR}; \ 
    134                 cd ${WRKDIR}/.. && \ 
     134                cd ${WRKDIR} && \ 
    135135                for file in ${DISTFILES}; do \ 
    136136                        case $$file in \ 
     
    143143                                bzip2 -dc $$file | cpio -mid ;; \ 
    144144                        *.zip) \ 
    145                                 unzip $$file -d ${WRKDIR} ;; \ 
     145                                unzip -d ${WRKDIR} $$file ;; \ 
    146146                        esac; \ 
    147147                done