Skip to content

Commit 5fcb006

Browse files
committed
FIX: using the new compress in build scripts
1 parent 7205141 commit 5fcb006

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

make/pre-make.r3

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ REBOL [
1111
See: http://www.apache.org/licenses/LICENSE-2.0
1212
}
1313
Author: "Oldes"
14-
Needs: 3.5.0
14+
Needs: 3.6.0
1515
Note: {
1616
This script is comilation of multiple original Carl's make-* scripts.
1717
}

make/tools/make-boot.reb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1041,8 +1041,8 @@ data: mold reduce sections
10411041
insert data reduce ["; Copyright (C) REBOL Technologies " now newline]
10421042
insert tail data make char! 0 ; scanner requires zero termination
10431043

1044-
comp-data: compress data: to-binary data
1045-
;comp-data-zlib: compress/zlib/level data: to-binary data 9
1044+
data: to binary! data
1045+
comp-data: compress/level data 'zlib 9
10461046

10471047
emit [
10481048
{

make/tools/make-host-init.reb

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ write-c-file: func [
5555

5656
write-generated gen-dir/gen-host-init.reb data
5757

58-
comp-data: compress data
58+
comp-data: compress/level data 'zlib 9
5959
comp-size: length? comp-data
6060

6161
emit ["#define REB_INIT_SIZE " comp-size newline newline]

0 commit comments

Comments
 (0)