Build fixes

This commit is contained in:
Steven Barth 2009-10-26 13:24:36 +00:00
parent 64d9a00a99
commit 6e7c32fa7d
2 changed files with 2 additions and 5 deletions

View file

@ -23,12 +23,9 @@ $(UCI_FILE):
$(UCI_PATCHDIR)/series:
(cd $(UCI_PATCHDIR); ls *.patch | sort > series)
$(UCI_DIR)/.prepared: $(UCI_PATCHDIR)/series $(UCI_FILE)
$(UCI_DIR)/.prepared: $(UCI_FILE)
rm -rf $(UCI_DIR)
tar xvfz $(UCI_FILE)
while read patch; do \
patch -d $(UCI_DIR) -p1 < $(UCI_PATCHDIR)/$$patch; \
done < $(UCI_PATCHDIR)/series
touch $@
compile: $(UCI_DIR)/.prepared

View file

@ -83,7 +83,7 @@ int nixio__check_mode(lua_State *L, int idx, int def) {
if (i == 9) { /* successfully parsed */
return mode;
}
} else if (lua_isinteger(L, idx)) {
} else if (lua_isnumber(L, idx)) {
int decmode = lua_tointeger(L, idx);
int s = (decmode % 10000) / 1000;
int u = (decmode % 1000) / 100;