X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 11D54DC0242 for ; Wed, 17 Jul 2013 14:09:38 +0000 (UTC) Received: from compute4.internal (compute4.nyi.mail.srv.osa [10.202.2.44]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 49D2521720 for ; Wed, 17 Jul 2013 10:09:36 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute4.internal (MEProxy); Wed, 17 Jul 2013 10:09:37 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id :in-reply-to:references; s=smtpout; bh=34YIR1PEpC+XyuOuGrAcxRhcr 20=; b=l27eSd2ROZJj/X3B1Z8aCeiajDG3m5Yz8DhyeHnTsrxhc7ULLXq6fDaAj GCEqgI+HreWtQg8qXoxJYNDGYU0cTBpvbCgZxCoNu4BVTkjsD0CnJeDdDC1kgK2z kAXDAVH3SF2pPNnUjMJ8F58wtXm+Z2q0XlJfiFrcOzuI+KuTB8= X-Sasl-enc: N7r+PtADZFOeNwkD/W/KBswCDzPW1UGS7eAOgzr8zTos 1374070176 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id 8A2C16800F3 for ; Wed, 17 Jul 2013 10:09:36 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 2/2] Makefile: convert old-style suffix rules Date: Wed, 17 Jul 2013 10:09:35 -0400 Message-Id: <9facfa578a60ad349de26fb47f88526c32a0af89.1374070138.git.dubiousjim@gmail.com> X-Mailer: git-send-email 1.8.3.3 In-Reply-To: <20130708150956.6750ab71@ncopa-desktop.alpinelinux.org> References: <20130708150956.6750ab71@ncopa-desktop.alpinelinux.org> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index aff475a..8f1b113 100644 --- a/Makefile +++ b/Makefile @@ -53,10 +53,10 @@ SED_REPLACE := -e 's:@VERSION@:$(FULL_VERSION):g' \ -e 's:@sysconfdir@:$(sysconfdir):g' .SUFFIXES: .sh.in .in -.sh.in.sh: +%.sh: %.sh.in ${SED} ${SED_REPLACE} ${SED_EXTRA} $< > $@ -.in: +%: %.in ${SED} ${SED_REPLACE} ${SED_EXTRA} $< > $@ .PHONY: all apk clean install uninstall -- 1.8.3.3 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---