FIXUPHACK 378 B

12345678910111213
  1. #Ubuntu Precise Pangolin: executable 'gdk-pixbuf-query-loaders' is not in $PATH...
  2. #note: /etc/rc.d/rc.d/rc.update runs this.
  3. if [ ! -e usr/bin/gdk-pixbuf-query-loaders ];then
  4. #it is actually at usr/lib/gdk-pixbuf-2.0/
  5. GPQL="`find usr/lib -type f -executable -name gdk-pixbuf-query-loaders | head -n 1`"
  6. if [ "$GPQL" ];then
  7. mkdir -p usr/bin
  8. mv -f $GPQL usr/bin/
  9. fi
  10. fi