diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-05-07 13:47:00 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-05-07 13:47:00 +0300 |
commit | aa6a71c05ac79553f88583264179054998037f90 (patch) | |
tree | c254d2c5a98c1c51c77f948e02c8035a5ac3042d /helpers/update-support.sh | |
parent | 49f12cf3a4199be8a5e1699fe41a06ad37751132 (diff) | |
parent | 262c9c0e14e68c2b4b5d00e88f1bacc6c9556f3a (diff) | |
download | egawk-aa6a71c05ac79553f88583264179054998037f90.tar.gz egawk-aa6a71c05ac79553f88583264179054998037f90.tar.bz2 egawk-aa6a71c05ac79553f88583264179054998037f90.zip |
Merge branch 'gawk-5.1-stable'
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 |