diff options
Diffstat (limited to 'recipes-tizen/notification/notification.inc')
-rw-r--r-- | recipes-tizen/notification/notification.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/recipes-tizen/notification/notification.inc b/recipes-tizen/notification/notification.inc index ea3cda7a..0f01a59f 100644 --- a/recipes-tizen/notification/notification.inc +++ b/recipes-tizen/notification/notification.inc @@ -73,6 +73,9 @@ do_compile() { LANG=C export LANG unset DISPLAY + CFLAGS="-O2 -g -m64 -fmessage-length=0 -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables" ; export CFLAGS ; + CXXFLAGS="${CXXFLAGS:--O2 -g -m64 -fmessage-length=0 -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables}" ; export CXXFLAGS ; + FFLAGS="${FFLAGS:--O2 -g -m64 -fmessage-length=0 -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -I%_fmoddir}" ; export FFLAGS ; LD_AS_NEEDED=1; export LD_AS_NEEDED ; @@ -125,7 +128,7 @@ pkg_postinst_${PN}() { #!/bin/sh -e ldconfig - ${D}${prefix}/share/notification/notification_DB_init.sh + $D${prefix}/share/notification/notification_DB_init.sh } |