diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
commit | f96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch) | |
tree | edb17ec2c4ea13c5acb1c7350957a249a820e28d /iproute2 | |
parent | b6588aa6851fb220cedc387d21c51513ef8d67f4 (diff) |
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'iproute2')
-rw-r--r-- | iproute2/iproute2-2.6.8/iproute2-2.6.8_no_strip.diff | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/iproute2/iproute2-2.6.8/iproute2-2.6.8_no_strip.diff b/iproute2/iproute2-2.6.8/iproute2-2.6.8_no_strip.diff index e69de29bb2..0a029a6d51 100644 --- a/iproute2/iproute2-2.6.8/iproute2-2.6.8_no_strip.diff +++ b/iproute2/iproute2-2.6.8/iproute2-2.6.8_no_strip.diff @@ -0,0 +1,24 @@ +--- ip/Makefile.o 2004-08-05 12:38:25.836331936 +0200 ++++ ip/Makefile 2004-08-05 12:38:42.256835640 +0200 +@@ -22,7 +22,7 @@ + rtmon: $(RTMONOBJ) $(LIBNETLINK) + + install: all +- install -m 0755 -s $(TARGETS) $(DESTDIR)$(SBINDIR) ++ install -m 0755 $(TARGETS) $(DESTDIR)$(SBINDIR) + install -m 0755 routel routef $(DESTDIR)$(SBINDIR) + + clean: +--- tc/Makefile.o 2004-08-05 12:37:33.325314824 +0200 ++++ tc/Makefile 2004-08-05 12:38:12.085422392 +0200 +@@ -61,8 +61,8 @@ + + install: all + mkdir -p $(DESTDIR)/usr/lib/tc +- install -m 0755 -s tc $(DESTDIR)$(SBINDIR) +- for i in $(TCSO); do install -m 755 -s $$i $(DESTDIR)/usr/lib/tc; done ++ install -m 0755 tc $(DESTDIR)$(SBINDIR) ++ for i in $(TCSO); do install -m 755 $$i $(DESTDIR)/usr/lib/tc; done + + clean: + rm -f $(TCOBJ) $(TCLIB) libtc.a tc |