summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/pkgconfig
diff options
context:
space:
mode:
authorJoe Slater <jslater@windriver.com>2017-03-09 18:01:29 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-11 16:08:49 +0000
commitad151cf2de2f1990297e7ba18fa78958b00a3dd3 (patch)
tree480e39854cda44303cd72528cba82af1fdb7c365 /meta/recipes-devtools/pkgconfig
parentd6b04e12127dd65b96ac7f4509b829510ef21071 (diff)
downloadopenembedded-core-ad151cf2de2f1990297e7ba18fa78958b00a3dd3.tar.gz
pkgconfig: specify --disable-indirect-deps to configure
This preserves the current behaviour because the auto test by configure will never return yes. ./libtool is needed by the test and it will never exist. Signed-off-by: Joe Slater <jslater@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools/pkgconfig')
-rw-r--r--meta/recipes-devtools/pkgconfig/pkgconfig_git.bb5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb b/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb
index 422c5f3b7b..dc44992c7e 100644
--- a/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb
+++ b/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb
@@ -22,6 +22,11 @@ S = "${WORKDIR}/git"
inherit autotools
+# Because of a faulty test, the current auto mode always evaluates to no,
+# so just continue that behaviour.
+#
+EXTRA_OECONF += "--disable-indirect-deps"
+
PACKAGECONFIG ??= "glib"
PACKAGECONFIG_class-native = ""
PACKAGECONFIG_class-nativesdk = ""
g-service'>ChenQi/systemd-syslog-service OpenEmbedded Core user contribution treesGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/apmd/apmd-3.2.2-14/init
blob: 268d4b26b7adede4056860390a39ff2b9f01a16d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh
### BEGIN INIT INFO
# Provides:          apmd
# Required-Start:    $remote_fs
# Required-Stop:     $remote_fs
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Advanced Power Management daemon
### END INIT INFO

PATH=/bin:/usr/bin:/sbin:/usr/sbin

[ -f /etc/default/rcS ] && . /etc/default/rcS
[ -f /etc/default/apmd ] && . /etc/default/apmd

case "$1" in
    start)
	echo -n "Starting advanced power management daemon: "
	start-stop-daemon -S -x /usr/sbin/apmd -- \
		-P /etc/apm/apmd_proxy $APMD
	if [ $? = 0 ]; then
	    echo "apmd."
	else
	    echo "(failed.)"
	fi
	;;
    stop)
	echo -n "Stopping advanced power management daemon: "
	start-stop-daemon -K \
		-x /usr/sbin/apmd
	echo "apmd."
	;;
    restart|force-reload) 
	$0 stop
	$0 start
	exit
	;;
    *)
	echo "Usage: /etc/init.d/apmd {start|stop|restart|force-reload}"
	exit 1
	;;
esac

exit 0