diff options
author | Tom Rini <trini@embeddedalley.com> | 2009-10-14 11:27:27 -0700 |
---|---|---|
committer | Tom Rini <trini@embeddedalley.com> | 2009-10-14 11:27:27 -0700 |
commit | 38705be757c181061380807c25fbe88363a107a2 (patch) | |
tree | ae8078eb541717d21824d255de3f72b1c9fcac4a /recipes/gnome/gnome-games_2.24.0.bb | |
parent | 60f7dc1ccfe9dfceddb69ded7dd28351519fe3aa (diff) |
Use LDFLAGS not CFLAGS to add libraries for linking
Diffstat (limited to 'recipes/gnome/gnome-games_2.24.0.bb')
-rw-r--r-- | recipes/gnome/gnome-games_2.24.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/gnome/gnome-games_2.24.0.bb b/recipes/gnome/gnome-games_2.24.0.bb index 6449c82c8a..b4e7cf43c9 100644 --- a/recipes/gnome/gnome-games_2.24.0.bb +++ b/recipes/gnome/gnome-games_2.24.0.bb @@ -36,7 +36,7 @@ do_install_append() { install -m 0644 ${D}/${datadir}/icons/hicolor/48x48/apps/* ${D}/${datadir}/pixmaps } -CFLAGS_append = " -lguile -lgmp -lcrypt -lm -lltdl" +LDFLAGS += "-lguile -lgmp -lcrypt -lm -lltdl" FILES_${PN}-doc += " ${datadir}/gnome/help" FILES_${PN}-dbg += " ${bindir}/.debug ${libdir}/gnome-games/.debug" |