Index: /experimental/installation/scripts/ossie-packager.sh
===================================================================
--- /experimental/installation/scripts/ossie-packager.sh	(revision 4137)
+++ /experimental/installation/scripts/ossie-packager.sh	(revision 4138)
@@ -77,6 +77,6 @@
 fi
 
-# Prepare the RPM spec files
-GPP_version=`awk "/Version:/" ${default_GPP_node_spec}`
+# Parse the current version numbers out of the file
+GPP_version=`awk "/Version:/" ${GPP_spec}`
 ossie_cf_version=`awk "/Version:/" ${ossie_cf_spec}`
 standard_interfaces_version=`awk "/Version:/" ${standard_interfaces_spec}`
@@ -86,11 +86,60 @@
 nodebooter_version=`awk "/Version:/" ${nodebooter_spec}`
 
-printf "Please enter the version of the GPP [%s]: " $GPP_version
-printf "Please enter the version of the OSSIE CF [%s]: " $GPP_version
-printf "Please enter the version of standardInterfaces [%s]: " $GPP_version
-printf "Please enter the version of WaveDev [%s]: " $GPP_version
-printf "Please enter the version of the default GPP node [%s]: " $GPP_version
-printf "Please enter the version of the domain [%s]: " $GPP_version
-printf "Please enter the version of nodebooter [%s]: " $GPP_version
+printf "\nWe now need to set the version number for each of the software
+packages you are building.  Please enter the versions for the following
+packages.  Leave the input blank to accept the current version.\n"
+
+# Get new version numbers
+printf "GPP [%s]: " $GPP_version
+read ver_input
+if [ ! -z $ver_input ]
+then
+    $GPP_version=ver_input
+fi
+
+printf "OSSIE CF [%s]: " $ossie_cf_version
+read ver_input
+if [ ! -z $ver_input ]
+then
+    $ossie_cf_version=ver_input
+fi
+
+printf "standardInterfaces [%s]: " $standard_interfaces_version
+read ver_input
+if [ ! -z $ver_input ]
+then
+    $standard_interfaces_version=ver_input
+fi
+
+printf "WaveDev [%s]: " $WaveDev_version
+read ver_input
+if [ ! -z $ver_input ]
+then
+    $WaveDev_version=ver_input
+fi
+
+printf "default GPP node [%s]: " $default_GPP_node_version
+read ver_input
+if [ ! -z $ver_input ]
+then
+    $default_GPP_node_version=ver_input
+fi
+
+printf "domain [%s]: " $domain_version
+read ver_input
+if [ ! -z $ver_input ]
+then
+    $domain_version=ver_input
+fi
+
+printf "nodebooter [%s]: " $nodebooter_version
+read ver_input
+if [ ! -z $ver_input ]
+then
+    $GPP_version=ver_input
+fi
+
+# Set package versions in spec files
+sed "s/^Version:.*$/Version:${GPP_version}/" ${GPP_spec}
 
 # Begin building RPMs
