From patchwork Tue Sep 1 11:39:16 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Romain Naour X-Patchwork-Id: 512785 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 9325B14076C for ; Tue, 1 Sep 2015 21:39:31 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id B631195187; Tue, 1 Sep 2015 11:39:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Jb+ick8kk93U; Tue, 1 Sep 2015 11:39:30 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 19FD19511F; Tue, 1 Sep 2015 11:39:30 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 102D21BFE29 for ; Tue, 1 Sep 2015 11:39:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 0B5C9A3A6D for ; Tue, 1 Sep 2015 11:39:29 +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 QoxsVreK3qpB for ; Tue, 1 Sep 2015 11:39:27 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mx1.openwide.fr (mx1.openwide.fr [213.162.52.98]) by fraxinus.osuosl.org (Postfix) with ESMTPS id A0547A3A6A for ; Tue, 1 Sep 2015 11:39:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by zimbra2.corp.accelance.fr (Postfix) with ESMTP id B7E04C1641BA3 for ; Tue, 1 Sep 2015 13:39:25 +0200 (CEST) Received: from mx1.openwide.fr ([127.0.0.1]) by localhost (zimbra2.corp.accelance.fr [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id euvJsDYXeaVq; Tue, 1 Sep 2015 13:39:25 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by zimbra2.corp.accelance.fr (Postfix) with ESMTP id 3EC86C1641B24; Tue, 1 Sep 2015 13:39:25 +0200 (CEST) X-Virus-Scanned: amavisd-new at accelance.fr Received: from mx1.openwide.fr ([127.0.0.1]) by localhost (zimbra2.corp.accelance.fr [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id bcMcD-WhIxWW; Tue, 1 Sep 2015 13:39:25 +0200 (CEST) Received: from atlas.localdomain (unknown [37.163.215.234]) by zimbra2.corp.accelance.fr (Postfix) with ESMTPSA id BF9C2C148E5E9; Tue, 1 Sep 2015 13:39:24 +0200 (CEST) From: Romain Naour To: buildroot@buildroot.org Date: Tue, 1 Sep 2015 13:39:16 +0200 Message-Id: <1441107556-8212-1-git-send-email-romain.naour@openwide.fr> X-Mailer: git-send-email 2.4.3 Subject: [Buildroot] [PATCH] package/eudev: fix install command 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" The directory $(TARGET_DIR)/etc/init.d/ must exist before installing S10udev init script. Add the missing "-D" option to create the "init.d" directory. Signed-off-by: Romain Naour --- package/eudev/eudev.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/eudev/eudev.mk b/package/eudev/eudev.mk index b916acd..1aa74b3 100644 --- a/package/eudev/eudev.mk +++ b/package/eudev/eudev.mk @@ -57,7 +57,7 @@ EUDEV_CONF_OPTS += --disable-selinux endif define EUDEV_INSTALL_INIT_SYSV - $(INSTALL) -m 0755 package/eudev/S10udev $(TARGET_DIR)/etc/init.d/S10udev + $(INSTALL) -D -m 0755 package/eudev/S10udev $(TARGET_DIR)/etc/init.d/S10udev endef # Required by default rules for input devices