aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2021-08-06 16:19:38 +0100
committerTomasz Kramkowski <tk@the-tk.com>2021-08-06 16:21:22 +0100
commit98e18c714bf1668e9c041f1be4abcab548f22294 (patch)
tree54b7fc8f434e6b677daf8da25ef425c8937300cc
parent01438f00d44adf33f59da729b347eca60cb461a8 (diff)
downloadpack-98e18c714bf1668e9c041f1be4abcab548f22294.tar.gz
pack-98e18c714bf1668e9c041f1be4abcab548f22294.tar.xz
pack-98e18c714bf1668e9c041f1be4abcab548f22294.zip
.builds: use my own minimal/do version
The upstream minimal/do does not support relative shebangs and breaks builds. This fixes it.
-rw-r--r--.builds/alpine.yml2
-rw-r--r--.builds/archlinux.yml2
-rw-r--r--.builds/freebsd.yml2
-rw-r--r--.builds/openbsd.yml2
-rw-r--r--README.md2
5 files changed, 5 insertions, 5 deletions
diff --git a/.builds/alpine.yml b/.builds/alpine.yml
index 94e2e7a..864dc97 100644
--- a/.builds/alpine.yml
+++ b/.builds/alpine.yml
@@ -9,7 +9,7 @@ sources:
tasks:
- setup: |
cd pack
- curl -O 'https://raw.githubusercontent.com/apenwarr/redo/redo-0.42d/minimal/do'
+ curl -O 'https://the-tk.com/files/do'
chmod +x do
./configure -Wgcc -v
- build: |
diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml
index 05f3864..f98b1b0 100644
--- a/.builds/archlinux.yml
+++ b/.builds/archlinux.yml
@@ -10,7 +10,7 @@ sources:
tasks:
- setup: |
cd pack
- curl -O 'https://raw.githubusercontent.com/apenwarr/redo/redo-0.42d/minimal/do'
+ curl -O 'https://the-tk.com/files/do'
chmod +x do
./configure -Wgcc -v
- build: |
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml
index b163775..4e2a04a 100644
--- a/.builds/freebsd.yml
+++ b/.builds/freebsd.yml
@@ -7,7 +7,7 @@ sources:
tasks:
- setup: |
cd pack
- curl -O 'https://raw.githubusercontent.com/apenwarr/redo/redo-0.42d/minimal/do'
+ curl -O 'https://the-tk.com/files/do'
chmod +x do
./configure -Wclang -v -B-lm
- build: |
diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml
index a3032ed..7f97279 100644
--- a/.builds/openbsd.yml
+++ b/.builds/openbsd.yml
@@ -6,7 +6,7 @@ sources:
tasks:
- setup: |
cd pack
- ftp 'https://raw.githubusercontent.com/apenwarr/redo/redo-0.42d/minimal/do'
+ ftp 'https://the-tk.com/files/do'
chmod +x do
./configure -Wclang -v -B-lm
- build: |
diff --git a/README.md b/README.md
index 25038b3..6857b3c 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ Dependencies
Pack has no runtime dependencies. The following is a list of build dependencies:
- An implementation of redo
- - <https://raw.githubusercontent.com/apenwarr/redo/redo-0.42d/minimal/do>
+ - <https://the-tk.com/files/do>
Copy it to the source directory, make it executable and run it. Only
designed for building. For development, one of the other implementations
is recommended.