Skip to content

Commit b7abbc8

Browse files
committed
In athrun:
* Install compatibility symlinks in attachandrun so it also appears in /bin * Stop using a fully-qualified path to attachandrun in athrun and gathrun
1 parent ee61bb9 commit b7abbc8

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

Diff for: athrun

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ case $# in
1111
exit 1
1212
;;
1313
1)
14-
exec /bin/attachandrun "$1" "$1" "$1"
14+
exec attachandrun "$1" "$1" "$1"
1515
;;
1616
*)
1717
locker=$1
1818
program=$2
1919
shift 2;
20-
exec /bin/attachandrun "$locker" "$program" "$program" "$@"
20+
exec attachandrun "$locker" "$program" "$program" "$@"
2121
;;
2222
esac

Diff for: debian/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
debathena-athrun (10.2-0debathena2) unstable; urgency=low
2+
3+
* Install compatibility symlinks in attachandrun so it also appears in /bin
4+
* Stop using a fully-qualified path to attachandrun in athrun and gathrun
5+
6+
-- Alexander Chernyakhovsky <[email protected]> Thu, 30 May 2013 04:45:39 -0400
7+
18
debathena-athrun (10.2-0debathena1) unstable; urgency=low
29

310
* Merge debathena-gathrun and debathena-attachandrun into the debathena-athrun source package.

Diff for: debian/debathena-attachandrun.links

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
usr/bin/attachandrun bin/attachandrun

Diff for: gathrun

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ if attachandrun --check "$locker" "$program" "$@"; then
3535
if [ "$splash" = "yes" ]; then
3636
yes | zenity --progress --text="Launching $program, please wait.\n(This may take a few moments)" --pulsate --no-cancel --timeout 7 &
3737
fi
38-
exec /bin/athena/attachandrun "$locker" "$program" "$program" "$@"
38+
exec attachandrun "$locker" "$program" "$program" "$@"
3939
else
4040
zenity --info \
4141
--text="$program is not available in the $locker locker on this platform."

0 commit comments

Comments
 (0)