diff options
author | Ron Yorston <rmy@pobox.com> | 2023-07-25 12:03:34 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2023-07-25 12:03:34 +0100 |
commit | df560c7c017c1084a180d922922358ed600faeb5 (patch) | |
tree | e06b26d8b07a7b8a5f5c8ea57c485b2809c7b444 /examples | |
parent | 5a18e3e757539dd0e7cfa12ef4177db2d6097afd (diff) | |
download | busybox-w32-df560c7c017c1084a180d922922358ed600faeb5.tar.gz busybox-w32-df560c7c017c1084a180d922922358ed600faeb5.tar.bz2 busybox-w32-df560c7c017c1084a180d922922358ed600faeb5.zip |
Add Unicode version to prerelease build
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/mswin-build/mkprerelease | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/mswin-build/mkprerelease b/examples/mswin-build/mkprerelease index ea98785d7..45f64fa72 100755 --- a/examples/mswin-build/mkprerelease +++ b/examples/mswin-build/mkprerelease | |||
@@ -2,7 +2,7 @@ | |||
2 | # | 2 | # |
3 | # Build busybox prerelease binaries | 3 | # Build busybox prerelease binaries |
4 | # | 4 | # |
5 | TARGETS="build_pre_32 build_pre_64" | 5 | TARGETS="build_pre_32 build_pre_64 build_pre_64u" |
6 | 6 | ||
7 | # If an argument is supplied it overrides the default source directory. | 7 | # If an argument is supplied it overrides the default source directory. |
8 | SRC=busybox-w32 | 8 | SRC=busybox-w32 |
@@ -30,6 +30,9 @@ do | |||
30 | if [ $i = "build_pre_64" ] | 30 | if [ $i = "build_pre_64" ] |
31 | then | 31 | then |
32 | CONFIG=mingw64_defconfig; | 32 | CONFIG=mingw64_defconfig; |
33 | elif [ $i = "build_pre_64u" ] | ||
34 | then | ||
35 | CONFIG=mingw64u_defconfig; | ||
33 | elif [ $i = "build_pre_32" ] | 36 | elif [ $i = "build_pre_32" ] |
34 | then | 37 | then |
35 | CONFIG=mingw32_defconfig; | 38 | CONFIG=mingw32_defconfig; |