summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-11-30 16:14:26 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-11-30 16:14:26 -0500
commitb81efba931aae92fa7cfafb0f2d070ba203a86f2 (patch)
tree216e39f5bd01ca43b40f4a53d9ae49e995f29c1c /src
parentb9dbed0ae6709351dd244c87581c2d558a9d129f (diff)
libremakepkg: forget -R
Diffstat (limited to 'src')
-rwxr-xr-xsrc/chroot-tools/libremakepkg7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/chroot-tools/libremakepkg b/src/chroot-tools/libremakepkg
index deb26b2..4b49931 100755
--- a/src/chroot-tools/libremakepkg
+++ b/src/chroot-tools/libremakepkg
@@ -122,7 +122,6 @@ usage() {
echo ' on the username'
echo ''
echo " -m <MAKEPKG> Use the command MAKEPKG instead of 'makepkg'"
- echo " -R Repackage"
echo ''
echo ' -h Show this message'
}
@@ -134,7 +133,6 @@ main() {
[[ $CHROOTCOPY != root ]] || CHROOTCOPY=copy
makepkg_args='-s --noconfirm -L '
- REPACKAGE=false
MAKEPKG=makepkg
while getopts 'n:l:m:Rh' arg ; do
@@ -142,7 +140,6 @@ main() {
n) CHROOT=$OPTARG;;
l) CHROOTCOPY=$OPTARG;;
m) MAKEPKG=$OPTARG;;
- R) REPACKAGE=true; makepkg_args+=' -R ';;
h) usage; exit 0;;
*) usage; exit 1;;
esac
@@ -183,11 +180,13 @@ main() {
export CARCH
chroot_init
+
libre_check_pkgbuild
- $REPACKAGE || chroot_extract
+ chroot_extract
libre_check_src
chroot_build
libre_check_pkg
+
copy_pkgs
copy_logs
}