repo.or.cz
/
buildroot-gz.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
package/upmpcli: bump to version 0.13.1
[buildroot-gz.git]
/
package
/
gdk-pixbuf
/
S26gdk-pixbuf
blob
82b7944e744ce3cc72371715ba23c8bbc565ceeb
1
#!/bin/sh
2
#
3
# run gdk-pixbuf-query-loaders if needed
4
5
FILE
=/
usr
/
lib
/
gdk-pixbuf-2.0
/
2.10.0
/
loaders.cache
6
7
case
"
$1
"
in
8
start|
""
)
9
if
[ !
-f
"
$FILE
"
] ;
then
10
/
usr
/
bin
/
gdk-pixbuf-query-loaders
--update-cache
11
fi
12
;;
13
stop
)
14
;;
15
*)
16
echo
"Usage:
$0
{start|stop}"
>&
2
17
exit
1
18
;;
19
esac