Show
Ignore:
Timestamp:
11/14/09 15:41:31 (4 years ago)
Author:
Cyrus
Message:

Avoid unnecessary compiling

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • luci/trunk/contrib/uci/Makefile

    r5416 r5539  
    2121    wget -O $@ "$(UCI_URL)" || rm -f $@ 
    2222 
    23 $(UCI_PATCHDIR)/series: 
    24     (cd $(UCI_PATCHDIR); ls *.patch | sort > series) 
    25  
    26 $(UCI_DIR)/.prepared: $(UCI_PATCHDIR)/series $(UCI_FILE) 
     23$(UCI_DIR)/.prepared: $(UCI_FILE) 
    2724    rm -rf $(UCI_DIR) 
    2825    tar xvfz $(UCI_FILE) 
     26    (cd $(UCI_PATCHDIR); ls *.patch | sort > series) || true 
    2927    [ -f "$(UCI_PATCHDIR)/series" ] && while read patch; do \ 
    3028        patch -d $(UCI_DIR) -p1 < $(UCI_PATCHDIR)/$$patch; \