From: Jo-Philipp Wich Date: Tue, 24 Jan 2012 19:08:26 +0000 (+0000) Subject: [packages] ssmtp: add shebang (#10851) X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=148533974de7cc3eb8b2c32d6a1f513d3f59534f;p=openwrt%2Fsvn-archive%2Farchive.git [packages] ssmtp: add shebang (#10851) SVN-Revision: 29898 --- diff --git a/mail/ssmtp/Makefile b/mail/ssmtp/Makefile index 4afd27f0dd..0240ae0e7a 100644 --- a/mail/ssmtp/Makefile +++ b/mail/ssmtp/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2007-2010 OpenWrt.org +# Copyright (C) 2007-2012 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ssmtp PKG_VERSION:=2.64 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.bz2 PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/s/ssmtp @@ -55,7 +55,8 @@ define Package/ssmtp/install endef define Package/ssmtp/postinst - ln -sf ssmtp $${IPKG_INSTROOT}/usr/sbin/sendmail +#!/bin/sh +ln -sf ssmtp $${IPKG_INSTROOT}/usr/sbin/sendmail endef $(eval $(call BuildPackage,ssmtp))