From 6e7c32fa7d5dcd0d02aac85dbe1ed10a75a72ee9 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Mon, 26 Oct 2009 13:24:36 +0000 Subject: [PATCH] Build fixes --- contrib/uci/Makefile | 5 +---- libs/nixio/src/fs.c | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/contrib/uci/Makefile b/contrib/uci/Makefile index 98e5ed4398..19625aa723 100644 --- a/contrib/uci/Makefile +++ b/contrib/uci/Makefile @@ -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 diff --git a/libs/nixio/src/fs.c b/libs/nixio/src/fs.c index e21623b858..53a406081c 100644 --- a/libs/nixio/src/fs.c +++ b/libs/nixio/src/fs.c @@ -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; -- 2.30.2