diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2020-01-01 20:52:54 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2020-01-01 20:52:54 +0000 |
commit | cb24bd26f82a89678bcbe6d52d72c67a43dd913d (patch) | |
tree | 6ef75c4e4a64387cbbf1dec4efcc46b7eedc9a4e /cad/lepton-eda/files/patch-build-tools_icon-theme-installer | |
parent | - Mark DEPRECATED. It was replaced by devel/sope4 (diff) |
cad/lepton-eda: Update to 1.9.9
PR: 241289
Submitted by: dmn <graahnul.grom@gmail.com> (maintainer)
Diffstat (limited to 'cad/lepton-eda/files/patch-build-tools_icon-theme-installer')
-rw-r--r-- | cad/lepton-eda/files/patch-build-tools_icon-theme-installer | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/cad/lepton-eda/files/patch-build-tools_icon-theme-installer b/cad/lepton-eda/files/patch-build-tools_icon-theme-installer new file mode 100644 index 000000000000..db7baf233ded --- /dev/null +++ b/cad/lepton-eda/files/patch-build-tools_icon-theme-installer @@ -0,0 +1,20 @@ +--- build-tools/icon-theme-installer.orig 2019-10-03 20:45:55 UTC ++++ build-tools/icon-theme-installer +@@ -103,13 +103,13 @@ if test -z "$INSTALL_BASE_DIR"; then + exit 1 + fi + +-if test ! -x `echo "$MKINSTALLDIRS_EXEC" | cut -f1 -d' '`; then +- echo "Cannot find '$MKINSTALLDIRS_EXEC'; You probably want to pass -m \$(mkinstalldirs)" ++if test -z "$MKINSTALLDIRS_EXEC"; then ++ echo "\$MKINSTALLDIRS_EXEC is not set. Pass it with the -m command line option" + exit 1 + fi + +-if test ! -x `echo "$INSTALL_DATA_EXEC" | cut -f1 -d' '`; then +- echo "Cannot find '$INSTALL_DATA_EXEC'; You probably want to pass -x \$(INSTALL_DATA)" ++if test -z "$INSTALL_DATA_EXEC"; then ++ echo "\$INSTALL_DATA_EXEC' is not set. Pass it with the -x command line option" + exit 1 + fi + |