summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2021-01-22 20:31:57 -0500
committerAndreas Grapentin <andreas@grapentin.org>2022-01-18 17:31:54 +0100
commite233357c4933de99163304207a85e104c22509d8 (patch)
tree219e2795c281946f9a5a94827beaf72f4edcb3af
parente4c05f63b323bc2a7b1b6e9a1961d31568b7ae17 (diff)
src/chroot-tools/libremakepkg: -S option may be not yet implemented
-rwxr-xr-xsrc/chroot-tools/libremakepkg4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chroot-tools/libremakepkg b/src/chroot-tools/libremakepkg
index 1b29c3e..80d7444 100755
--- a/src/chroot-tools/libremakepkg
+++ b/src/chroot-tools/libremakepkg
@@ -184,7 +184,7 @@ usage() {
this unless you have a special reason, its
use is a violation of Parabola policy." \
'-R' 'Repackage contents of the package without rebuilding' \
- "-S <$(_ FILE)>" 'Use an existing --allsource source-package' \
+ "-S <$(_ FILE)>" 'Use an existing --allsource source-package (not-yrt-implemented)' \
'-h' 'Show this message'
}
@@ -211,7 +211,7 @@ main() {
w|r) librechroot_flags+=(-$flag "$OPTARG") ; ! $INCHROOT || err_chflag "$flag";;
N ) NONET=false;;
R ) repack=true; makepkg_args+=(-R);;
- S ) srcpkg=$OPTARG;;
+ S ) srcpkg='';; # srcpkg=$OPTARG;; TODO: not yet implemented
h ) usage; exit $EXIT_SUCCESS;;
* ) usage >&2; exit $EXIT_INVALIDARGUMENT;;
esac