File tree 2 files changed +6
-11
lines changed
2 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -28,17 +28,7 @@ mv -n bin/country.sys _output/gcc/.
28
28
mv -n share/src/share.com _output/gcc/.
29
29
mv -n share/src/share.map _output/gcc/.
30
30
31
- # Watcom
32
- OWTAR=ow-snapshot.tar.xz
33
- if [ ! -d _watcom ] ; then
34
- mkdir -p _downloads
35
- mkdir _watcom
36
- if [ ! -f _downloads/$OWTAR ] ; then
37
- (cd _downloads && wget --no-verbose https://github.com/open-watcom/open-watcom-v2/releases/download/Last-CI-build/$OWTAR )
38
- fi
39
- (cd _watcom && tar -xf ../_downloads/$OWTAR )
40
- fi
41
-
31
+ # Open Watcom Environment Setup
42
32
export WATCOM=$BUILD_DIR /_watcom
43
33
export PATH=$BUILD_DIR /bin:$PATH :$WATCOM /binl64
44
34
Original file line number Diff line number Diff line change @@ -14,10 +14,15 @@ sudo apt install dosemu2 dos2unix
14
14
# Perhaps later we should build using Freecom from published package
15
15
16
16
mkdir -p _downloads
17
+ mkdir -p _watcom
17
18
cd _downloads
18
19
19
20
HERE=$( pwd)
20
21
22
+ # download and unpack Open Watcom snapshot
23
+ [ -f ow-snapshot.tar.xz ] || wget --no-verbose https://github.com/open-watcom/open-watcom-v2/releases/download/Current-build/ow-snapshot.tar.xz
24
+ tar -C ../_watcom -xf ow-snapshot.tar.xz
25
+
21
26
# IBIBLIO_PATH='http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/1.2/repos'
22
27
IBIBLIO_PATH=' https://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/repositories/1.3'
23
28
You can’t perform that action at this time.
0 commit comments