[Xfce4-commits] <xfce4-taskbar-plugin:master> Make use of 'cp' instead of 'sudo ln -s' in Makefile
Valentin Dudouyt
noreply at xfce.org
Fri Apr 26 03:54:02 CEST 2013
Updating branch refs/heads/master
to decc2120c1bb03de4b302767ca1b38b220820313 (commit)
from ca864bb688c8b3082d5c59df8156f30f362f5db4 (commit)
commit decc2120c1bb03de4b302767ca1b38b220820313
Author: Valentin Dudouyt <valentin.dudouyt at gmail.com>
Date: Fri Apr 26 08:53:07 2013 +0700
Make use of 'cp' instead of 'sudo ln -s' in Makefile
Makefile | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/Makefile b/Makefile
index f8ea116..73007da 100644
--- a/Makefile
+++ b/Makefile
@@ -16,12 +16,12 @@ libtaskbar.so:$(OBJ)
g++ -shared -o libtaskbar.so $(OBJ) $(LINKFLAGS)
install:
- sudo ln -s `pwd`/libtaskbar.so /usr/lib/xfce4/panel-plugins/libtaskbar.so
- sudo ln -s `pwd`/taskbar.desktop /usr/share/xfce4/panel/plugins/taskbar.desktop
+ cp `pwd`/libtaskbar.so /usr/lib/xfce4/panel-plugins/libtaskbar.so
+ cp `pwd`/taskbar.desktop /usr/share/xfce4/panel/plugins/taskbar.desktop
uninstall:
- sudo rm -f /usr/lib/xfce4/panel-plugins/libtaskbar.so
- sudo rm -f /usr/share/xfce4/panel/plugins/taskbar.desktop
+ rm -f /usr/lib/xfce4/panel-plugins/libtaskbar.so
+ rm -f /usr/share/xfce4/panel/plugins/taskbar.desktop
clean:
rm -f *.o *.so
More information about the Xfce4-commits
mailing list