commit 0ef5847bc496e50dff57096c3f8eef4336901071 from: Thomas Adam date: Fri Mar 03 15:45:20 2023 UTC portable: remove ln(1) wrapper GNU Coreutils is wrapped for some commands which don't offer a portable means to run those commands on non-BSD systems. ln(1) was being used with a non-portable option (-h) which has now been replaced upstream. Therefore, we can remove this wrapper. Patch from Christian "naddy" Weisgerber. commit - e6f45b7279f2ab31024ae32f7ad28148bf80bee7 commit + 0ef5847bc496e50dff57096c3f8eef4336901071 blob - 5717d8546f7b48cec0575ba2bd32efa3a05eda3a blob + 7897a7e13c5efe5e42d7cafe4794e1e3ab0ce5b2 --- regress/cmdline/common.sh +++ regress/cmdline/common.sh @@ -51,19 +51,6 @@ date() command "$DATECMD" "$@" } -ln() -{ - LNCMD="ln" - [ "$PLATFORM" != "linux" ] && { - command -v "gln" >/dev/null 2>&1 && { - LNCMD="gln" - } || { - echo "Couldn't find gln is GNU coreutils installed?" - } - } - command "$LNCMD" "$@" -} - sed() { SEDCMD="sed"