author | mickeyl <mickeyl> | 2004-01-05 15:41:45 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-01-05 15:41:45 (UTC) |
commit | 22e51ed82162ef307f3f8cef21d3288147f18cad (patch) (side-by-side diff) | |
tree | d3318a78deb837c91aca6d048ad649716060a5a3 /config.in | |
parent | 969831e80dd285e8c95e8a91333a626717d5543e (diff) | |
download | opie-22e51ed82162ef307f3f8cef21d3288147f18cad.zip opie-22e51ed82162ef307f3f8cef21d3288147f18cad.tar.gz opie-22e51ed82162ef307f3f8cef21d3288147f18cad.tar.bz2 |
support a customizable quicklaunch path, this fixes the problem when
people install quicklaunch applications to non-root hence having
the link pointing to non-existing ./quicklauncher
-rw-r--r-- | config.in | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -35,32 +35,36 @@ endchoice config OPTIMIZE boolean "Use optimizations" default "y" if ! TARGET_X86 config DEBUG boolean "Enable debug builds" default n config RELEASE bool default y depends !DEBUG config QUICK_LAUNCH boolean "Enable Quick Launch" default n +config QUICKLAUNCH_PATH + string "Path to quicklauncher" + default "./quicklauncher" if TARGET_X86 + default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 config SPECFILE string default "qws/linux-generic-g++" if TARGET_X86 && (! X11) default "linux-g++" if TARGET_X86 && X11 default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) default "linux-g++" if TARGET_SHARP && X11 default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) default "linux-g++" if TARGET_IPAQ && X11 default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) default "linux-g++" if TARGET_RAMSES && X11 default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) default "linux-g++" if TARGET_SIMPAD && X11 default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) |