[OE-core] [PATCH] pakcage.bbclass:use a better way to cut -dev/-dbg suffix

2013-02-22 Thread Song.Li
From: "Song.Li" In pakcage.bbclass,function replace('-dev', '') is used to cut '-dev' suffix. but it will cause the name "lib32-device-dev" to "lib32ice", so change it to [:-4]. Signed-off-by: Song.Li --- meta/classes/package

[OE-core] [PATCH V2] guile:meta/Makefile change install-data-hook to install-exec-hook

2012-07-28 Thread Song.Li
From: "Song.Li" In guile meta/Makefile, what install-data-hook do must be run after install-binSCRIPTS.so it's a exec hook, not a data hook. If keep these exec-hook in data-hook,when we run make with multi-jobbing , install-data-hook and install-binSCRIPTS will be separate

[OE-core] [PATCH V3] sysstat:use a new way to remove -s option of LFLAGS

2012-07-26 Thread Song.Li
From: "Song.Li" sysstat Makefile shouldn't use -s option to strip binary because we need debug info for dbg package. The old way to remove -s option is passing LFLAGS='' in make command line to clean all the LFLAGS variable in Makefile. That will cause build failure w

[OE-core] [PATCH] change install-data-hook to install-exec-hook in guile

2012-07-26 Thread Song.Li
From: "Song.Li" In guile meta/Makefile, what install-data-hook do must be run after install-binSCRIPTS.so it's a exec hook, not a data hook. If keep these exec-hook in data-hook,when we run make with multi-jobbing , install-data-hook and install-binSCRIPTS will be separate

[OE-core] [PATCH V2] sysstat:use a new way to remove -s option of LFLAGS

2012-07-25 Thread Song.Li
From: "Song.Li" sysstat Makefile shouldn't use -s option to strip binary because we need debug info for dbg package. The old way to remove -s option is passing LFLAGS='' in make command line to clean all the LFLAGS variable in Makefile. That will cause build failure w