From 1762278d9654e5f90ab587cbde7bac0e2b220014 Mon Sep 17 00:00:00 2001 From: pinicarus Date: Sun, 22 Nov 2020 20:47:31 +0100 Subject: fix: replace perl usage with coreutils --- core/core.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/core.mk b/core/core.mk index 77adc2e..5f2af67 100644 --- a/core/core.mk +++ b/core/core.mk @@ -191,8 +191,7 @@ core_lc = $(subst A,a,$(subst B,b,$(subst C,c,$(subst D,d,$(subst E,e,$(subst F, core_ls = $(filter-out $(1),$(shell echo $(1))) -# @todo Use a solution that does not require using perl. -core_relpath = $(shell perl -e 'use File::Spec; print File::Spec->abs2rel(@ARGV) . "\n"' $1 $2) +core_relpath = $(shell realpath --canonicalize-missing --relative-to=$2 $1) define core_render printf -- '$(subst $(newline),\n,$(subst %,%%,$(subst ','\'',$(subst $(tab),$(WS),$(call $(1))))))\n' > $(2) -- cgit v1.2.3