summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-05-27 16:02:26 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-05-27 16:02:26 (EDT)
commit8a4478db5316126870d2577478e508d12dd9dc15 (patch)
treedb28dded50ff1cfb3d1b0b6d43a1d418aa12c48f
parent5b109ffb18d1790557594c149056971c98b6c625 (diff)
Fix default source/binary building behavior.feature/s-and-b-options
-rw-r--r--src/opkbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/opkbuild.sh b/src/opkbuild.sh
index 18991e7..114eeed 100644
--- a/src/opkbuild.sh
+++ b/src/opkbuild.sh
@@ -57,8 +57,8 @@ error()
exit 1
}
-source_only=true
-binary_only=true
+source_only=false
+binary_only=false
opts=$(getopt -n "${0}" -o 'Sbr:a:p:ds:V' -- "${@}")
if [ ${?} -ne 0 ]; then
print_usage "${0}" >&2