From: Felix Fietkau Date: Tue, 21 Nov 2006 15:12:59 +0000 (+0000) Subject: don't generate a certificate during stunnel build - will make a default one later X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=7dbe0b77b69cc7079aa1cfc4a75a46c0b1d9ee57;p=openwrt%2Fsvn-archive%2Farchive.git don't generate a certificate during stunnel build - will make a default one later SVN-Revision: 5604 --- diff --git a/net/stunnel/Makefile b/net/stunnel/Makefile index c2a34e1a1c..78479eb79c 100644 --- a/net/stunnel/Makefile +++ b/net/stunnel/Makefile @@ -34,6 +34,8 @@ define Build/Configure endef define Build/Compile + mkdir -p $(PKG_INSTALL_DIR)/etc/stunnel + echo '#dummy' > $(PKG_INSTALL_DIR)/etc/stunnel/stunnel.pem $(MAKE) -C $(PKG_BUILD_DIR) \ DESTDIR="$(PKG_INSTALL_DIR)" \ all install @@ -44,7 +46,6 @@ define Package/stunnel/install install -d -m0755 $(1)/etc/stunnel $(1)/etc/init.d $(CP) $(PKG_INSTALL_DIR)/usr/sbin/stunnel $(1)/usr/sbin/ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libstunnel.so $(1)/usr/sbin/ - $(CP) $(PKG_INSTALL_DIR)/etc/stunnel/stunnel.pem $(1)/etc/stunnel/ $(CP) ./files/stunnel.conf $(1)/etc/stunnel/stunnel.conf $(CP) ./files/stunnel.init $(1)/etc/init.d/S90stunnel endef