From 6bab00e8f292fbd1772bc9932e2134b26105a7c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinhard=20M=C3=BCller?= Date: Thu, 14 Mar 2019 00:43:44 +0100 Subject: [PATCH] Make all paths relative to avoid issues in dependency checking --- tools/update_stylesheets.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/update_stylesheets.sh b/tools/update_stylesheets.sh index 5cc927b5b2..1be6c4e09c 100755 --- a/tools/update_stylesheets.sh +++ b/tools/update_stylesheets.sh @@ -29,7 +29,7 @@ makefile="/tmp/makefile-${pid}" | tr '\t\r\n' ' ' \ | sed -r 's/(]*>)/\n\1\n/g' \ | sed -rn '/]*>/s/^.*href *= *"([^"]*)".*$/\1/gp' \ - | xargs -I'{}' realpath "$(dirname ${xsl_file})/{}" \ + | xargs -I'{}' realpath --relative-to="." "$(dirname ${xsl_file})/{}" \ )) if [ -n "${prerequisites}" ]; then echo "all: ${xsl_file}"