diff options
author | midipix <writeonce@midipix.org> | 2024-07-21 02:23:17 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-07-22 00:10:51 +0000 |
commit | f98cb2926767a4045a976b5f9b46d8b6d03a37ff (patch) | |
tree | 518c06bd9b1cc25594efe03a561c0641526219e7 /aux/ar-lib | |
parent | 99eb57ae04ee435a5d498c01badff4e7a58e5bf1 (diff) | |
download | slibtool-f98cb2926767a4045a976b5f9b46d8b6d03a37ff.tar.bz2 slibtool-f98cb2926767a4045a976b5f9b46d8b6d03a37ff.tar.xz |
slibtoolize: compatibility: install (copy or symlink) a no-op ar-lib as needed.
Diffstat (limited to 'aux/ar-lib')
-rwxr-xr-x | aux/ar-lib | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/aux/ar-lib b/aux/ar-lib new file mode 100755 index 0000000..3ef4a41 --- /dev/null +++ b/aux/ar-lib @@ -0,0 +1,27 @@ +#!/bin/sh + +##################################################################### +## slibtool: a strong libtool implementation, written in C ## +## Copyright (C) 2016--2024 SysDeer Technologies, LLC ## +## Released under the Standard MIT License; see COPYING.SLIBTOOL. ## +##################################################################### + +##################################################################### +## ar-lib: a placeholder script, currently not implemented ## +## ------------------------------------------------------- ## +##################################################################### + +set -eu + +error_msg() +{ + printf '%s\n' "$@" >&2 +} + +error_not_implemented() +{ + error_msg 'ar-lib: this script is a placeholder.' + exit 2 +} + +error_not_implemented |