1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-07-05 06:12:20 +03:00
openwrt-packages/fbida/patches/003-fbgs.patch
kyak 277888f878 fbida: a few applications for viewing and editing images; ghostscript as
a requirement for fbgs, a wrapper script for viewing ps/pdf files on the
framebuffer console using fbi, an image viewer for the linux framebuffer
console.
2010-10-18 20:39:48 +04:00

13 lines
325 B
Diff

--- fbida-2.07.orig/fbgs 2010-10-18 20:26:32.264246468 +0400
+++ fbida-2.07/fbgs 2010-10-18 20:26:57.179244034 +0400
@@ -1,7 +1,7 @@
-#!/bin/bash
+#!/bin/sh
# tmp dir
-DIR="$(mktemp -dtp ${TMPDIR-/var/tmp} fbgs-XXXXXX)"
+DIR="$(mktemp -dtp ${TMPDIR-/tmp} fbgs-XXXXXX)"
test -d "$DIR" || exit 1
trap "rm -rf $DIR" EXIT