diff options
author | John Crispin <john@openwrt.org> | 2014-06-30 09:57:29 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-06-30 09:57:29 +0000 |
commit | 9912d02fa1d0e0f4a484180d23c812223bde7e11 (patch) | |
tree | f8d2b85574c15da3b84027ac50880c8af58b50ae /package/system/procd/Makefile | |
parent | a7863b1368b7cd2c6486acf3cac111905ac2cfb0 (diff) | |
download | upstream-9912d02fa1d0e0f4a484180d23c812223bde7e11.tar.gz upstream-9912d02fa1d0e0f4a484180d23c812223bde7e11.tar.bz2 upstream-9912d02fa1d0e0f4a484180d23c812223bde7e11.zip |
procd: fix uci_validation
Regardles of the return code from validate_data _error variable will be 0 due
to 'local' command in the previous line. With this patch we are able to catch
the return code from validate_data tool.
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 41414
Diffstat (limited to 'package/system/procd/Makefile')
-rw-r--r-- | package/system/procd/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/package/system/procd/Makefile b/package/system/procd/Makefile index 6553fcc831..30bcd2a7f2 100644 --- a/package/system/procd/Makefile +++ b/package/system/procd/Makefile @@ -1,7 +1,14 @@ +# +# Copyright (C) 2014 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + include $(TOPDIR)/rules.mk PKG_NAME:=procd -PKG_VERSION:=2014-06-19 +PKG_VERSION:=2014-06-27 PKG_RELEASE=$(PKG_SOURCE_VERSION) |