From: Romain Forlot <romain.forlot@iot.bzh>
Date: Tue, 8 Oct 2019 08:36:24 +0000 (+0200)
Subject: conf/system: fix shebang not absolute.
X-Git-Tag: 8.0.3~1
X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=65df94fcb40c721178f5ff551d4e083bf92729d7;p=src%2Fapp-framework-main.git

conf/system: fix shebang not absolute.

Wrong shebang in some shell script prevents packaging to ends correctly.

Bugs-AGL: SPEC-2863

Change-Id: I63ae56ddc88f9f9dfa0734efff69c26c87800a07
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
---

diff --git a/conf/system/afm-system-setup.sh.in b/conf/system/afm-system-setup.sh.in
index 65e75ed..4da558e 100644
--- a/conf/system/afm-system-setup.sh.in
+++ b/conf/system/afm-system-setup.sh.in
@@ -1,4 +1,4 @@
-#!bin/sh
+#!/bin/sh
 
 pdir=@afm_platform_rundir@
 
diff --git a/conf/system/afm-user-setup.sh.in b/conf/system/afm-user-setup.sh.in
index 076676f..058420d 100644
--- a/conf/system/afm-user-setup.sh.in
+++ b/conf/system/afm-user-setup.sh.in
@@ -1,4 +1,4 @@
-#!bin/sh
+#!/bin/sh
 
 uid=$1
 udir=/run/user/$uid