diff options
author | joey <joey> | 2003-07-28 19:37:12 +0000 |
---|---|---|
committer | joey <joey> | 2003-07-28 19:37:12 +0000 |
commit | 56e952b7c137f641983333ce200c445946def257 (patch) | |
tree | 87bbbbe598996e97995fc87bcb1792e90d08766d /t | |
parent | d579dae0cf159c50dcd902ff4a35590f7dcff395 (diff) | |
download | debhelper-56e952b7c137f641983333ce200c445946def257.tar.gz |
r1086: * Several man pae typo fixes by Ruben Porras. Closes: #202819version_4.1.56
* Now in a subversion repository, some minor changes for that.
* dh_link test should expect results in debian/debhelper, not debian/tmp.
Diffstat (limited to 't')
-rwxr-xr-x[-rw-r--r--] | t/dh_link | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/dh_link b/t/dh_link index 9f644e78..3ab345e8 100644..100755 --- a/t/dh_link +++ b/t/dh_link @@ -5,12 +5,12 @@ plan(tests => 3); # It used to not make absolute links in this situation, and it should. # #37774 system("./dh_link","etc/foo","usr/lib/bar"); -ok("/etc/foo",readlink("debian/tmp/usr/lib/bar")); +ok("/etc/foo",readlink("debian/debhelper/usr/lib/bar")); # let's make sure it makes simple relative links ok. system("./dh_link","usr/bin/foo","usr/bin/bar"); -ok("foo",readlink("debian/tmp/usr/bin/bar")); +ok("foo",readlink("debian/debhelper/usr/bin/bar")); # ok, more complex relative links. system("./dh_link","usr/lib/1","usr/bin/2"); -ok("../lib/1",readlink("debian/tmp/usr/bin/2")); +ok("../lib/1",readlink("debian/debhelper/usr/bin/2")); |