Command Reformatting

Update the format of the ./configure and Docker run command to now use
one option per line and to use 4 spaces for indentation.

Change-Id: Ia8053dd6b5ed83523c3bc585f7910d2ccc33b5a4
Signed-off-by: Alanny Lopez <alanny.lopez@ibm.com>
diff --git a/qemu-build.sh b/qemu-build.sh
index 6fc61b7..9c9dee6 100755
--- a/qemu-build.sh
+++ b/qemu-build.sh
@@ -71,10 +71,19 @@
 # Go into the source directory (the script will put us in a build subdir)
 cd qemu
 # disable anything that requires us to pull in X
-./configure --target-list=arm-softmmu \
-	--disable-spice --disable-docs --disable-gtk --disable-smartcard \
-	--disable-usb-redir --disable-libusb --disable-sdl --disable-gnutls \
-	--disable-vte --disable-vnc --disable-vnc-png
+./configure \
+    --target-list=arm-softmmu \
+    --disable-spice \
+    --disable-docs \
+    --disable-gtk \
+    --disable-smartcard \
+    --disable-usb-redir \
+    --disable-libusb \
+    --disable-sdl \
+    --disable-gnutls \
+    --disable-vte \
+    --disable-vnc \
+    --disable-vnc-png
 make -j4
 
 EOF_SCRIPT
@@ -82,5 +91,10 @@
 chmod a+x ${WORKSPACE}/build.sh
 
 # Run the docker container, execute the build script we just built
-docker run --rm=true -e WORKSPACE=${WORKSPACE} --user="${USER}" \
-  -w "${HOME}" -v "${HOME}":"${HOME}" -t qemu-build/ubuntu ${WORKSPACE}/build.sh
+docker run \
+    --rm=true \
+    -e WORKSPACE=${WORKSPACE} \
+    -w "${HOME}" \
+    -v "${HOME}":"${HOME}" \
+    -t qemu-build/ubuntu \
+    ${WORKSPACE}/build.sh