From patchwork Thu Oct 15 01:11:33 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 530454 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 7CEB3140E3B for ; Thu, 15 Oct 2015 12:11:53 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=zacarias.com.ar header.i=@zacarias.com.ar header.b=eikr1ltn; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 7745088591; Thu, 15 Oct 2015 01:11:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Jxbhz-jV2lg3; Thu, 15 Oct 2015 01:11:51 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 32E0C87EE5; Thu, 15 Oct 2015 01:11:51 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id BDB3D1C1546 for ; Thu, 15 Oct 2015 01:11:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B614F8C0A9 for ; Thu, 15 Oct 2015 01:11:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Kdzz8jFkCCQd for ; Thu, 15 Oct 2015 01:11:49 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from www.zacarias.com.ar (www.zacarias.com.ar [176.9.42.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id 175DF8C09B for ; Thu, 15 Oct 2015 01:11:48 +0000 (UTC) Received: from asgard (cpe-186-22-136-136.telecentro-reversos.com.ar [186.22.136.136] (may be forged)) (authenticated bits=0) by www.zacarias.com.ar (8.15.1/8.15.1) with ESMTPSA id t9F1BdNS015078 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 15 Oct 2015 01:11:42 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1444871504; bh=nol1nflBSWc4YfQ4trjuUspR8oyG4OQQOcx6WJfnIt4=; h=From:To:Cc:Subject:Date; b=eikr1ltnQOYwds3zy9u38s2bmuFAuNRds4xvkzVZTrC4rCqUxvkq5hniptZAVlQXn Pigm0pFnUS6zfAOkKWBEduCFMr6HCYFHmRmjDGFvr16mYPvM0YdhOIBRpDI/xa2/u1 heyXEDcx8gNeby+lr29b0DIc3+qVji86ZLKfQeDY= Received: by asgard (sSMTP sendmail emulation); Wed, 14 Oct 2015 22:11:33 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 14 Oct 2015 22:11:33 -0300 Message-Id: <1444871493-6802-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.4.9 X-Virus-Scanned: clamav-milter 0.98.7 at www X-Virus-Status: Clean Subject: [Buildroot] [PATCH] pango: remove initscript X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" pango-querymodules is deprecated/removed, so ditch the initscript. Signed-off-by: Gustavo Zacarias --- package/pango/S25pango | 20 -------------------- package/pango/pango.mk | 5 ----- 2 files changed, 25 deletions(-) delete mode 100644 package/pango/S25pango diff --git a/package/pango/S25pango b/package/pango/S25pango deleted file mode 100644 index 9af9307..0000000 --- a/package/pango/S25pango +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -# -# run pango-querymodules if needed - -FILE=/etc/pango/pango.modules - -case "$1" in - start|"") - if [ ! -f $FILE ] ; then - mkdir -p /etc/pango - /usr/bin/pango-querymodules > "$FILE" - fi - ;; - stop) - ;; - *) - echo "Usage: $0 {start|stop}" >&2 - exit 1 - ;; -esac \ No newline at end of file diff --git a/package/pango/pango.mk b/package/pango/pango.mk index 19d6509..6c96cd3 100644 --- a/package/pango/pango.mk +++ b/package/pango/pango.mk @@ -97,10 +97,5 @@ PANGO_DEPENDENCIES += xlib_libXft xlib_libXrender PANGO_CONF_OPTS += --with-xft endif -define PANGO_INSTALL_INIT_SYSV - $(INSTALL) -m 755 -D package/pango/S25pango \ - $(TARGET_DIR)/etc/init.d/S25pango -endef - $(eval $(autotools-package)) $(eval $(host-autotools-package))