Changeset 5415
- Timestamp:
- 10/26/09 14:24:36 (4 years ago)
- Location:
- luci/trunk
- Files:
-
- 2 modified
-
contrib/uci/Makefile (modified) (1 diff)
-
libs/nixio/src/fs.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
luci/trunk/contrib/uci/Makefile
r5365 r5415 24 24 (cd $(UCI_PATCHDIR); ls *.patch | sort > series) 25 25 26 $(UCI_DIR)/.prepared: $(UCI_ PATCHDIR)/series $(UCI_FILE)26 $(UCI_DIR)/.prepared: $(UCI_FILE) 27 27 rm -rf $(UCI_DIR) 28 28 tar xvfz $(UCI_FILE) 29 while read patch; do \30 patch -d $(UCI_DIR) -p1 < $(UCI_PATCHDIR)/$$patch; \31 done < $(UCI_PATCHDIR)/series32 29 touch $@ 33 30 -
luci/trunk/libs/nixio/src/fs.c
r5414 r5415 84 84 return mode; 85 85 } 86 } else if (lua_is integer(L, idx)) {86 } else if (lua_isnumber(L, idx)) { 87 87 int decmode = lua_tointeger(L, idx); 88 88 int s = (decmode % 10000) / 1000;
