change ug module lookup path;/opt/ug/lib -> /opt/usr/ug/lib
authorJinwoo Nam <jwoo.nam@samsung.com>
Sat, 10 Nov 2012 03:47:15 +0000 (12:47 +0900)
committerJinwoo Nam <jwoo.nam@samsung.com>
Sat, 10 Nov 2012 03:47:15 +0000 (12:47 +0900)
packaging/ui-gadget-1.spec
src/module.c

index 7d82a812fecdc238fe7fba68549817b1a1b58620..68e6ad7b3167b8d62291c61917004641b946e74d 100755 (executable)
@@ -1,8 +1,8 @@
 
 Name:       ui-gadget-1
 Summary:    UI Gadget Library
-Version:    0.1.0
-Release:    12
+Version:    0.1.1
+Release:    1
 Group:      TO_BE/FILLED_IN
 License:    TO BE FILLED IN
 Source0:    %{name}-%{version}.tar.gz
index 69c54d156e2dc7ecea10b3e601e991ae77983ad9..89989f7fad6e35fd34fbaa5d3237010a91c875d5 100644 (file)
@@ -78,7 +78,7 @@ struct ug_module *ug_module_load(const char *name)
                snprintf(ug_file, PATH_MAX, "/usr/ug/lib/libug-%s.so", name);
                if (file_exist(ug_file))
                        break;
-               snprintf(ug_file, PATH_MAX, "/opt/ug/lib/libug-%s.so", name);
+               snprintf(ug_file, PATH_MAX, "/opt/usr/ug/lib/libug-%s.so", name);
                if (file_exist(ug_file))
                        break;
        } while (0);