diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2007-07-31 02:29:50 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2007-07-31 02:29:50 +0000 |
commit | 61cbb12adcaa3b2f11045b6811fcc8c4a35be324 (patch) | |
tree | 39413913c7a08632a8d36d4aaa128382c7c988a7 /sysutils/nitrogen/files/patch-data-icon-theme-installer | |
parent | Update to 1.3.1.0 (diff) |
Nitrogen is a background browser and setter for X windows. It is written
in C++ using the gtkmm toolkit.
WWW: http://l3ib.org/nitrogen
PR: ports/114282
Submitted by: Jonathan Liu <Net147 at hotmail.com>
Notes
Notes:
svn path=/head/; revision=196769
Diffstat (limited to 'sysutils/nitrogen/files/patch-data-icon-theme-installer')
-rw-r--r-- | sysutils/nitrogen/files/patch-data-icon-theme-installer | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sysutils/nitrogen/files/patch-data-icon-theme-installer b/sysutils/nitrogen/files/patch-data-icon-theme-installer new file mode 100644 index 000000000000..ba76ba65c353 --- /dev/null +++ b/sysutils/nitrogen/files/patch-data-icon-theme-installer @@ -0,0 +1,17 @@ +--- data/icon-theme-installer.orig Sun Dec 31 16:59:08 2006 ++++ data/icon-theme-installer Tue Jul 3 21:45:35 2007 +@@ -101,12 +101,12 @@ + exit 1 + fi + +-if test ! -x $(echo "$MKINSTALLDIRS_EXEC" | cut -f1 -d' '); then ++if test ! -x $(which $(echo "$MKINSTALLDIRS_EXEC" | cut -f1 -d' ')); then + echo "Cannot find '$MKINSTALLDIRS_EXEC'; You probably want to pass -m \$(mkinstalldirs)" + exit 1 + fi + +-if test ! -x $(echo "$INSTALL_DATA_EXEC" | cut -f1 -d' '); then ++if test ! -x $(which $(echo "$INSTALL_DATA_EXEC" | cut -f1 -d' ')); then + echo "Cannot find '$INSTALL_DATA_EXEC'; You probably want to pass -x \$(INSTALL_DATA)" + exit 1 + fi |