Changeset 5415

Show
Ignore:
Timestamp:
10/26/09 14:24:36 (4 years ago)
Author:
Cyrus
Message:

Build fixes

Location:
luci/trunk
Files:
2 modified

Legend:

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

    r5365 r5415  
    2424    (cd $(UCI_PATCHDIR); ls *.patch | sort > series) 
    2525 
    26 $(UCI_DIR)/.prepared: $(UCI_PATCHDIR)/series $(UCI_FILE) 
     26$(UCI_DIR)/.prepared: $(UCI_FILE) 
    2727    rm -rf $(UCI_DIR) 
    2828    tar xvfz $(UCI_FILE) 
    29     while read patch; do \ 
    30       patch -d $(UCI_DIR) -p1 < $(UCI_PATCHDIR)/$$patch; \ 
    31     done < $(UCI_PATCHDIR)/series 
    3229    touch $@ 
    3330 
  • luci/trunk/libs/nixio/src/fs.c

    r5414 r5415  
    8484            return mode; 
    8585        } 
    86     } else if (lua_isinteger(L, idx)) { 
     86    } else if (lua_isnumber(L, idx)) { 
    8787        int decmode = lua_tointeger(L, idx); 
    8888        int s = (decmode % 10000)   / 1000;