From 44481e435e0fe1baa381abb20a0c71bb1b146455 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Fri, 22 Oct 2021 23:02:27 +0200 Subject: [PATCH] move-asn1-header-files.sh: Replace original asn file path in generated asn1 header files This makes builds reproducible and keep the existing relative path. This should have been done in a previous commit changing the paths being passed to asn1c to be absolute (top_srcdir). Fixes: f67803684f47077de3c9e06eb7dc007e0bc86b28 Change-Id: I19537f136cbb654950172ee532027920d353a556 --- move-asn1-header-files.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/move-asn1-header-files.sh b/move-asn1-header-files.sh index b9683236..ec94e245 100755 --- a/move-asn1-header-files.sh +++ b/move-asn1-header-files.sh @@ -22,6 +22,7 @@ collect_sed_commands() { shift echo "s,^#include \"$fname\"$,#include <$include_subdir/$fname>," + echo "s, \* \tfound in \"${base_dir}, * \tfound in \"../..," done }