diff options
Diffstat (limited to 'aux')
-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 |