Use absolute paths in post-open_pdks.sh script Signed-off-by: Tim 'mithro' Ansell <tansell@google.com>
diff --git a/open_pdks/post-open_pdks.sh b/open_pdks/post-open_pdks.sh index 0273fc6..4b55c43 100755 --- a/open_pdks/post-open_pdks.sh +++ b/open_pdks/post-open_pdks.sh
@@ -21,8 +21,8 @@ export PATH=/host/out/magic/bin:$PATH # Clear timestamps in magic files -find out/pdk-* -name '*.mag' -exec sed -i -e's/timestamp [0-9]\+/timestamp 0/' \{\} \+ +find /host/out/pdk-* -name '*.mag' -exec sed -i -e's/timestamp [0-9]\+/timestamp 0/' \{\} \+ # Clear timestamps in GDS files -find out/pdk-* -name '*.gds' -exec /host/git/builder/open_pdks/gds_change_date.py 1 0 \{\} +find /host/out/pdk-* -name '*.gds' -exec /host/git/builder/open_pdks/gds_change_date.py 1 0 \{\} #find out/pdk-* -name '*.gds' -print | parallel -v /host/git/builder/open_pdks/gds_change_date.py 1 0 \{\}