diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2002-08-04 01:17:18 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2002-08-04 01:17:18 +0000 |
commit | 1ecde4fc33d8b5a4f553d56c495384d869ba7245 (patch) | |
tree | f696139818e4c7d92ab75251d8dc3ecf0d3b2cbf | |
parent | 4d9c3b64145cd11511a41c5394be070e084cf616 (diff) |
2002-08-03 Jeff Bailey <jbailey@gnu.org>
* rules: Symlinks should point to relative location, not absolute.
-rw-r--r-- | debian/ChangeLog | 4 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/debian/ChangeLog b/debian/ChangeLog index 944aa50d..a224d8a3 100644 --- a/debian/ChangeLog +++ b/debian/ChangeLog @@ -1,3 +1,7 @@ +2002-08-03 Jeff Bailey <jbailey@gnu.org> + + * rules: Symlinks should point to relative location, not absolute. + 2002-05-23 Marcus Brinkmann <marcus@gnu.org> * control (Provides, Replaces, Conflicts): Add fakeroot. diff --git a/debian/rules b/debian/rules index fb0e3971..f6365a2b 100755 --- a/debian/rules +++ b/debian/rules @@ -131,7 +131,7 @@ binary-arch: build # Create development library links. for file in `cd debian/tmp/lib && ls *.so.*`; do \ linkname=`echo "$$file" | sed 's/\..*$$/.so/'`; \ - ln -sf /lib/$$file debian/$(package)-dev/usr/lib/$$linkname; \ + ln -sf $$file debian/$(package)-dev/usr/lib/$$linkname; \ done rm -f debian/tmp/lib/*.so |