diff options
author | Jim Ramsay <lack@gentoo.org> | 2011-02-22 13:22:55 +0000 |
---|---|---|
committer | Jim Ramsay <lack@gentoo.org> | 2011-02-22 13:22:55 +0000 |
commit | 491ca2cc6650852f185fb1ee534934fe084922f7 (patch) | |
tree | 619908f7fc613dbe9ab66f7c6b5aa36462643f1b /x11-wm/fluxbox/files | |
parent | Remove stupid app-text/asciidoc[test] mask. (diff) | |
download | historical-491ca2cc6650852f185fb1ee534934fe084922f7.tar.gz historical-491ca2cc6650852f185fb1ee534934fe084922f7.tar.bz2 historical-491ca2cc6650852f185fb1ee534934fe084922f7.zip |
Fluxbox 1.3.0 is released! (Bug #355643)
Package-Manager: portage-2.1.9.34/cvs/Linux i686
Diffstat (limited to 'x11-wm/fluxbox/files')
-rw-r--r-- | x11-wm/fluxbox/files/fluxbox-1.3.0-osx-has-otool.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/x11-wm/fluxbox/files/fluxbox-1.3.0-osx-has-otool.patch b/x11-wm/fluxbox/files/fluxbox-1.3.0-osx-has-otool.patch new file mode 100644 index 000000000000..637d2a824669 --- /dev/null +++ b/x11-wm/fluxbox/files/fluxbox-1.3.0-osx-has-otool.patch @@ -0,0 +1,14 @@ +--- util/fbsetbg ++++ util/fbsetbg +@@ -356,7 +356,10 @@ + if [ ! "$wpsetter" = Esetroot ]; then + WPSETTER=$wpsetter + break +- elif ldd `which Esetroot`|grep libImlib 2>&1 > /dev/null; then ++ elif ( [[ `type -t otool` == file ]] \ ++ && otool -L `which Esetroot`|grep libImlib 2>&1 > /dev/null ) \ ++ || ( [[ `type -t ldd` == file ]] \ ++ && ldd `which Esetroot`|grep libImlib 2>&1 > /dev/null ); then + WPSETTER=$wpsetter + break + else |