From 6b271ee283d7b62b92d099f5140a3f4e1b95257e Mon Sep 17 00:00:00 2001 From: Arne Fitzenreiter Date: Wed, 20 Aug 2014 21:56:35 +0200 Subject: [PATCH] iputils: Ship tracepath --- config/rootfiles/common/iputils | 1 + lfs/iputils | 9 +++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/config/rootfiles/common/iputils b/config/rootfiles/common/iputils index 12bab801de..934b55509a 100644 --- a/config/rootfiles/common/iputils +++ b/config/rootfiles/common/iputils @@ -1 +1,2 @@ usr/bin/ping +usr/bin/tracepath diff --git a/lfs/iputils b/lfs/iputils index deb92357a7..7741c0ed0d 100644 --- a/lfs/iputils +++ b/lfs/iputils @@ -73,7 +73,12 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/iputils-20020927-headers.patch cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/iputils-20020927-rh.patch cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/iputils-glibckernheaders.patch - cd $(DIR_APP) && make ping - cd $(DIR_APP) && install -m 0755 ping /usr/bin + cd $(DIR_APP) && make ping tracepath + cd $(DIR_APP) && install -m 4755 ping /usr/bin + cd $(DIR_APP) && install -m 0755 tracepath /usr/bin + + # Some scripts expect ping in /bin/ping. + ln -svf ../usr/bin/ping /bin/ping + @rm -rf $(DIR_APP) @$(POSTBUILD) -- 2.39.5