summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2021-01-22 20:31:57 -0500
committerbill-auger <mr.j.spam.me@gmail.com>2021-01-22 20:31:57 -0500
commitd0a14f1b7765911fca4578b72f5023672bfde234 (patch)
tree7b166728916532d406d925ab0d88073d655e3f87 /src
parent740c694b7011f15145a4aef3aa5cb081715c25a4 (diff)
src/chroot-tools/libremakepkg: -S option may be not yet implemented
Diffstat (limited to 'src')
-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