Changes: Install /usr/bin/applauncherd.launcher to /usr/lib/libapplauncherd.so

due to dh_strip problems and because it's not -pie.

RevBy: Alexey Shilov
pull/1/head
Jussi Lind 15 years ago
parent bf76d66ab3
commit c624a676f6

@ -1,4 +1,4 @@
usr/bin/applauncherd.bin
usr/bin/applauncherd.launch
usr/lib/libapplauncherd.so
usr/bin/applauncherd

7
debian/changelog vendored

@ -1,3 +1,10 @@
applauncherd (0.15.2) unstable; urgency=low
* Changes: Install /usr/bin/applauncherd.launcher to /usr/lib/libapplauncherd.so
due to dh_strip problems and because it's not -pie.
-- Jussi Lind <jussi.lind@nokia.com> Mon, 22 Nov 2010 15:32:17 +0200
applauncherd (0.15.1) stable; urgency=low
* Changes: Added the "startup time from application grid" test

@ -9,7 +9,7 @@ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -W -Wall -O2 -std=c99")
# Set precompiler flags
add_definitions(-DLIBRARIES_CONFIG_FILE="/etc/applauncherd.conf")
add_definitions(-DLAUNCHER_LIBRARY="/usr/bin/applauncherd.launch")
add_definitions(-DLAUNCHER_LIBRARY="/usr/lib/libapplauncherd.so")
link_libraries(${LIBDL})

@ -22,8 +22,9 @@ endif(WRT_FOUND)
link_libraries(${MEEGOTOUCH_LIBRARIES} ${LIBDL} ${QT_QTCORE_LIBRARY} ${WRT_LIBRARIES})
# Set executable
add_library(launcher MODULE ${SRC} ${MOC_SRC})
add_library(applauncherd MODULE ${SRC} ${MOC_SRC})
# Add install rule
install(FILES liblauncher.so DESTINATION /usr/bin/ RENAME applauncherd.launch)
#install(FILES liblauncher.so DESTINATION /usr/bin/ RENAME applauncherd.launch)
install(FILES libapplauncherd.so DESTINATION /usr/lib)

Loading…
Cancel
Save