aboutsummaryrefslogtreecommitdiffstats
path: root/helpers
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2021-05-07 13:47:49 +0300
committerArnold D. Robbins <arnold@skeeve.com>2021-05-07 13:47:49 +0300
commit3ff55e2709303f132d63d9cfa68b5d8d3616b1a9 (patch)
treee56ff4668e1c74d7f9ea97a80de1c8b887aa173b /helpers
parentbd26081fcdfa8b7b566ce970baa53bfe05ca552e (diff)
parentaa6a71c05ac79553f88583264179054998037f90 (diff)
downloadegawk-3ff55e2709303f132d63d9cfa68b5d8d3616b1a9.tar.gz
egawk-3ff55e2709303f132d63d9cfa68b5d8d3616b1a9.tar.bz2
egawk-3ff55e2709303f132d63d9cfa68b5d8d3616b1a9.zip
Merge branch 'master' into feature/docit
Diffstat (limited to 'helpers')
-rw-r--r--helpers/ChangeLog4
-rwxr-xr-xhelpers/update-support.sh8
2 files changed, 9 insertions, 3 deletions
diff --git a/helpers/ChangeLog b/helpers/ChangeLog
index b91339b1..4f448b99 100644
--- a/helpers/ChangeLog
+++ b/helpers/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-07 Arnold D. Robbins <arnold@skeeve.com>
+
+ * update-support.sh: Change to work from top level directory.
+
2021-04-23 Arnold D. Robbins <arnold@skeeve.com>
* update-support.sh: Update list of files to copy over.
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