[Pkg-owncloud-commits] [owncloud-client] 168/171: Linux shell integration: Do not call sed from absolute path.
Sandro Knauß
hefee-guest at moszumanska.debian.org
Wed Feb 17 09:37:04 UTC 2016
This is an automated email from the git hooks/post-receive script.
hefee-guest pushed a commit to annotated tag upstream/2.1.1+dfsg
in repository owncloud-client.
commit ae3b9f112cd2dc8944736abc0edede8b45b8794d
Author: Klaas Freitag <freitag at owncloud.com>
Date: Tue Feb 9 12:59:09 2016 +0100
Linux shell integration: Do not call sed from absolute path.
sed is in /bin/ rather than in /usr/bin on some systems, which
makes the scripts fail in the build environment. sed should be
in the PATH tough.
---
shell_integration/nautilus/createnemoplugin.sh | 2 +-
shell_integration/nautilus/setappname.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/shell_integration/nautilus/createnemoplugin.sh b/shell_integration/nautilus/createnemoplugin.sh
index cc4ff7d..c6463b7 100755
--- a/shell_integration/nautilus/createnemoplugin.sh
+++ b/shell_integration/nautilus/createnemoplugin.sh
@@ -3,4 +3,4 @@
# this script creates a plugin for nemo, just be replacing
# all occurences of Nautilus with Nemo.
-/usr/bin/sed -i.org -e 's/autilus/emo/g' syncstate_nemo.py
+sed -i.org -e 's/autilus/emo/g' syncstate_nemo.py
diff --git a/shell_integration/nautilus/setappname.sh b/shell_integration/nautilus/setappname.sh
index 55f4c29..1ca0859 100755
--- a/shell_integration/nautilus/setappname.sh
+++ b/shell_integration/nautilus/setappname.sh
@@ -3,4 +3,4 @@
# this script replaces the line
# appname = 'ownCloud'
# with the correct branding name in the syncstate.py script
-/usr/bin/sed -i.org -e 's/appname\s*=\s*'"'"'ownCloud'"'/appname = '$1'/" syncstate.py
+sed -i.org -e 's/appname\s*=\s*'"'"'ownCloud'"'/appname = '$1'/" syncstate.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git
More information about the Pkg-owncloud-commits
mailing list