[packages] mail/nullmailer: Fixed sendmail symlink creation to use shell variable for postinst script not Makefile variable

git-svn-id: svn://svn.openwrt.org/openwrt/packages@24841 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
cshore 2010-12-28 04:02:52 +00:00
parent 6ce453ed6d
commit 1f9fb11980

View File

@ -48,8 +48,8 @@ define Package/nullmailer/install
endef
define Package/nullmailer/postinst
ln -sf ../sbin/sendmail $(1)/usr/lib/sendmail
ln -sf nullmailer-sendmail $(1)/usr/sbin/sendmail
ln -sf ../sbin/sendmail $${IPKG_INSTROOT}/usr/lib/sendmail
ln -sf nullmailer-sendmail $${IPKG_INSTROOT}/usr/sbin/sendmail
endef
$(eval $(call BuildPackage,nullmailer))