From 6901877837ebc4f9a2b25141fb63467ad1744326 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Fri, 12 Jan 2024 22:15:09 +1100 Subject: [PATCH] Remove unnecessary touching of live filesystem in flex-2.5.11 --- steps/flex-2.5.11/pass1.sh | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/steps/flex-2.5.11/pass1.sh b/steps/flex-2.5.11/pass1.sh index 70b0159..a12d75f 100755 --- a/steps/flex-2.5.11/pass1.sh +++ b/steps/flex-2.5.11/pass1.sh @@ -14,14 +14,3 @@ src_prepare() { src_compile() { make -j1 PREFIX="${PREFIX}" } - -src_install() { - if test -d /lex; then - # Remove lex, later make install will symlink lex to flex - rm -rf /lex - rm -f "${PREFIX}/bin/lex" - rm -f "${PREFIX}/lib/mes/libl.a" - fi - - default -}