diff options
author | Nick Hanley <nicholasjhanley@gmail.com> | 2022-02-23 23:55:23 -0500 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2022-03-16 09:16:16 +0000 |
commit | 3e33c9fc71083e65ebfec415efdba01c62651a20 (patch) | |
tree | f2f08b6d37d3757ec46d27fcd253a47c27b7dc3d | |
parent | ad16e3efcc94edca000a0b571d00b32435598c0d (diff) | |
download | alpine-conf-3e33c9fc71083e65ebfec415efdba01c62651a20.zip |
fix PREFIX in *.in
Commit ec0c7a7 changed the sed expression for PREFIX injection but
forgot to update the scripts.
-rw-r--r-- | setup-acf.in | 2 | ||||
-rw-r--r-- | setup-alpine.in | 2 | ||||
-rw-r--r-- | setup-apkcache.in | 2 | ||||
-rw-r--r-- | setup-apkrepos.in | 2 | ||||
-rw-r--r-- | setup-disk.in | 2 | ||||
-rw-r--r-- | setup-dns.in | 2 | ||||
-rw-r--r-- | setup-hostname.in | 2 | ||||
-rw-r--r-- | setup-interfaces.in | 2 | ||||
-rw-r--r-- | setup-keymap.in | 2 | ||||
-rw-r--r-- | setup-lbu.in | 2 | ||||
-rw-r--r-- | setup-mta.in | 2 | ||||
-rw-r--r-- | setup-ntp.in | 2 | ||||
-rw-r--r-- | setup-proxy.in | 2 | ||||
-rw-r--r-- | setup-sshd.in | 2 | ||||
-rw-r--r-- | setup-timezone.in | 2 | ||||
-rw-r--r-- | update-conf.in | 2 | ||||
-rw-r--r-- | update-kernel.in | 2 |
17 files changed, 17 insertions, 17 deletions
diff --git a/setup-acf.in b/setup-acf.in index 23ef687..1c74636 100644 --- a/setup-acf.in +++ b/setup-acf.in @@ -3,7 +3,7 @@ PROGRAM=setup-acf VERSION=@VERSION@ -PREFIX= +PREFIX=@PREFIX@ . $PREFIX/lib/libalpine.sh usage() { diff --git a/setup-alpine.in b/setup-alpine.in index 989d38b..ad4ecce 100644 --- a/setup-alpine.in +++ b/setup-alpine.in @@ -3,7 +3,7 @@ PROGRAM=setup-alpine VERSION=@VERSION@ -PREFIX= +PREFIX=@PREFIX@ . $PREFIX/lib/libalpine.sh is_qemu() { diff --git a/setup-apkcache.in b/setup-apkcache.in index 2aec6be..ce7a30a 100644 --- a/setup-apkcache.in +++ b/setup-apkcache.in @@ -1,6 +1,6 @@ #!/bin/sh -PREFIX= +PREFIX=@PREFIX@ . "$PREFIX/lib/libalpine.sh" diff --git a/setup-apkrepos.in b/setup-apkrepos.in index bb77420..1c295a7 100644 --- a/setup-apkrepos.in +++ b/setup-apkrepos.in @@ -1,7 +1,7 @@ #!/bin/sh PROGRAM=setup-apkrepos -PREFIX= +PREFIX=@PREFIX@ MIRRORS_URL=https://mirrors.alpinelinux.org/mirrors.txt . $PREFIX/lib/libalpine.sh diff --git a/setup-disk.in b/setup-disk.in index ef49ec0..ba3fcfc 100644 --- a/setup-disk.in +++ b/setup-disk.in @@ -1,6 +1,6 @@ #!/bin/sh -PREFIX= +PREFIX=@PREFIX@ . "$PREFIX/lib/libalpine.sh" . "$PREFIX/lib/dasd-functions.sh" diff --git a/setup-dns.in b/setup-dns.in index 0eb67f8..85b6a1c 100644 --- a/setup-dns.in +++ b/setup-dns.in @@ -1,6 +1,6 @@ #!/bin/sh -PREFIX= +PREFIX=@PREFIX@ . "$PREFIX/lib/libalpine.sh" usage() { diff --git a/setup-hostname.in b/setup-hostname.in index 48cf2e6..c49e5ce 100644 --- a/setup-hostname.in +++ b/setup-hostname.in @@ -1,7 +1,7 @@ #!/bin/sh PROGRAM=setup-hostname -PREFIX= +PREFIX=@PREFIX@ . $PREFIX/lib/libalpine.sh diff --git a/setup-interfaces.in b/setup-interfaces.in index 4c227d5..e6cbf57 100644 --- a/setup-interfaces.in +++ b/setup-interfaces.in @@ -1,7 +1,7 @@ #!/bin/sh PROGRAM=setup-interfaces -PREFIX= +PREFIX=@PREFIX@ PKGS= diff --git a/setup-keymap.in b/setup-keymap.in index 4a57fde..ae54b16 100644 --- a/setup-keymap.in +++ b/setup-keymap.in @@ -1,6 +1,6 @@ #!/bin/sh -PREFIX= +PREFIX=@PREFIX@ . $PREFIX/lib/libalpine.sh MAPDIR="$ROOT/usr/share/bkeymaps" diff --git a/setup-lbu.in b/setup-lbu.in index 54b6a32..783188e 100644 --- a/setup-lbu.in +++ b/setup-lbu.in @@ -1,6 +1,6 @@ #!/bin/sh -PREFIX= +PREFIX=@PREFIX@ . "$PREFIX/lib/libalpine.sh" diff --git a/setup-mta.in b/setup-mta.in index 7ae0979..c75431a 100644 --- a/setup-mta.in +++ b/setup-mta.in @@ -1,6 +1,6 @@ #!/bin/sh -PREFIX= +PREFIX=@PREFIX@ . "$PREFIX/lib/libalpine.sh" conf="$ROOT/etc/ssmtp/ssmtp.conf" diff --git a/setup-ntp.in b/setup-ntp.in index e7871d9..da649a7 100644 --- a/setup-ntp.in +++ b/setup-ntp.in @@ -1,6 +1,6 @@ #!/bin/sh -PREFIX= +PREFIX=@PREFIX@ . "$PREFIX/lib/libalpine.sh" diff --git a/setup-proxy.in b/setup-proxy.in index 9456eb8..532ec65 100644 --- a/setup-proxy.in +++ b/setup-proxy.in @@ -1,6 +1,6 @@ #!/bin/sh -PREFIX= +PREFIX=@PREFIX@ for i in ./libalpine.sh $PREFIX/lib/libalpine.sh; do [ -e $i ] && . $i && break done diff --git a/setup-sshd.in b/setup-sshd.in index 271ad79..78cdaf4 100644 --- a/setup-sshd.in +++ b/setup-sshd.in @@ -1,6 +1,6 @@ #!/bin/sh -PREFIX= +PREFIX=@PREFIX@ . "$PREFIX/lib/libalpine.sh" diff --git a/setup-timezone.in b/setup-timezone.in index cdb4472..c61b070 100644 --- a/setup-timezone.in +++ b/setup-timezone.in @@ -1,6 +1,6 @@ #!/bin/sh -PREFIX= +PREFIX=@PREFIX@ . "$PREFIX/lib/libalpine.sh" diff --git a/update-conf.in b/update-conf.in index 8a6d774..63cf2b5 100644 --- a/update-conf.in +++ b/update-conf.in @@ -1,6 +1,6 @@ #!/bin/sh -PREFIX= +PREFIX=@PREFIX@ VERSION=@VERSION@ . $PREFIX/lib/libalpine.sh diff --git a/update-kernel.in b/update-kernel.in index dda4589..051ef43 100644 --- a/update-kernel.in +++ b/update-kernel.in @@ -8,7 +8,7 @@ # Copyright (c) 2014 Timo Teräs # Copyright (c) 2014-2021 Kaarle Ritvanen -PREFIX= +PREFIX=@PREFIX@ . $PREFIX/lib/libalpine.sh SCRIPT=update-kernel |