From 9e1dfdd62f141a9aef7e32c8d23f3c8899812989 Mon Sep 17 00:00:00 2001 From: kerneis Date: Tue, 2 Apr 2013 14:12:07 +0000 Subject: [PATCH] ahcpd: fix init script eval is necessary because $args introduces quotes git-svn-id: svn://svn.openwrt.org/openwrt/packages@36153 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- ipv6/ahcpd/Makefile | 2 +- ipv6/ahcpd/files/ahcpd.init | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ipv6/ahcpd/Makefile b/ipv6/ahcpd/Makefile index 41db0d8e2..a42db71fa 100644 --- a/ipv6/ahcpd/Makefile +++ b/ipv6/ahcpd/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ahcpd PKG_VERSION:=0.53 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.pps.jussieu.fr/~jch/software/files/ diff --git a/ipv6/ahcpd/files/ahcpd.init b/ipv6/ahcpd/files/ahcpd.init index 6654b0062..dee21c4c7 100644 --- a/ipv6/ahcpd/files/ahcpd.init +++ b/ipv6/ahcpd/files/ahcpd.init @@ -97,7 +97,7 @@ start() { config_foreach ahcp_config ahcpd config_foreach ahcp_server ahcpd [ -z "$interfaces" ] && return 0 - service_start /usr/sbin/ahcpd -D $args $interfaces + eval "service_start /usr/sbin/ahcpd -D $args $interfaces" } stop() { -- 2.11.0