diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-05-07 13:47:49 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-05-07 13:47:49 +0300 |
commit | 3ff55e2709303f132d63d9cfa68b5d8d3616b1a9 (patch) | |
tree | e56ff4668e1c74d7f9ea97a80de1c8b887aa173b /helpers/update-support.sh | |
parent | bd26081fcdfa8b7b566ce970baa53bfe05ca552e (diff) | |
parent | aa6a71c05ac79553f88583264179054998037f90 (diff) | |
download | egawk-3ff55e2709303f132d63d9cfa68b5d8d3616b1a9.tar.gz egawk-3ff55e2709303f132d63d9cfa68b5d8d3616b1a9.tar.bz2 egawk-3ff55e2709303f132d63d9cfa68b5d8d3616b1a9.zip |
Merge branch 'master' into feature/docit
Diffstat (limited to 'helpers/update-support.sh')
-rwxr-xr-x | helpers/update-support.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/helpers/update-support.sh b/helpers/update-support.sh index cc2d24aa..06ed1020 100755 --- a/helpers/update-support.sh +++ b/helpers/update-support.sh @@ -27,14 +27,16 @@ regex.h regex_internal.c regex_internal.h verify.h -malloc/dynarray.h malloc/dynarray-skeleton.c +malloc/dynarray.h +malloc/dynarray_emplace_enlarge.c +malloc/dynarray_finalize.c malloc/dynarray_resize.c" for i in $FILE_LIST do - if [ -f $GL/$i ] && [ -f $i ] + if [ -f $GL/$i ] && [ -f support/$i ] then - cp $GL/$i $i + cp $GL/$i support/$i fi done |