diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2010-09-02 10:04:19 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-02 22:17:11 +0100 |
commit | 2eeb0943ac5b3d8f942ae7f9cf655c12827483ae (patch) | |
tree | a9851783ca24013d11b34c76d8f0bf73cf1840eb /meta/recipes-extended/at/at.inc | |
parent | 558ef570975f6f83a1878a41ecd984ef07a1a443 (diff) | |
download | openembedded-core-2eeb0943ac5b3d8f942ae7f9cf655c12827483ae.tar.gz openembedded-core-2eeb0943ac5b3d8f942ae7f9cf655c12827483ae.tar.bz2 openembedded-core-2eeb0943ac5b3d8f942ae7f9cf655c12827483ae.tar.xz openembedded-core-2eeb0943ac5b3d8f942ae7f9cf655c12827483ae.zip |
at: fix for parallel build issue & bug #180
parallel build was failing inconsistently due to missing dependancy
specification in the make file. Fixed it with a new patch.
Bug 180 reported this issue:
| arm-poky-linux-gnueabi-gcc -march=armv5te -mtune=arm926ej-s -c -I.
-fexpensive-optimizations -fomit-frame-pointer -frename-registers -O2
-ggdb
-feliminate-unused-debug-types -DHAVE_CONFIG_H -DVERSION=\"3.1.12\"
-DETCDIR=\"/etc\" -DLOADAVG_MX=0.8 -DDAEMON_USERNAME=\"daemon\"
-DDAEMON_GROUPNAME=\"daemon\" -DLFILE=\"/var/spool/cron/atjobs/.SEQ\"
-Wall
atd.c
| atd.c:511:2: error: #error "No mail command specified."
| make: *** [atd.o] Error 1
Fixed it with the recommended solution of defining SENDMAIL as /bin/true
Fixes [BUGID #180]
Reorganized the recipe file for cleanlyness.
Add the init script for at
As per Scott's wiki instructions added the this init script for at:
http://git.buildroot.net/buildroot/tree/package/at/S99at
add libpam to dependancy
And bumped PR.
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/recipes-extended/at/at.inc')
-rw-r--r-- | meta/recipes-extended/at/at.inc | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/meta/recipes-extended/at/at.inc b/meta/recipes-extended/at/at.inc deleted file mode 100644 index 64ae9c2b6..000000000 --- a/meta/recipes-extended/at/at.inc +++ /dev/null @@ -1,11 +0,0 @@ -DESCRIPTION = "Delayed job execution and batch processing" -SECTION = "base" -DEPENDS = "flex" -RCONFLICTS_${PN} = "atd" -RREPLACES_${PN} = "atd" - -inherit autotools - -do_install () { - oe_runmake "IROOT=${D}" install -} |