]> andersk Git - gssapi-openssh.git/commitdiff
o Remove globus_core from the bundle.
authorcphillip <cphillip>
Wed, 17 Sep 2003 16:37:51 +0000 (16:37 +0000)
committercphillip <cphillip>
Wed, 17 Sep 2003 16:37:51 +0000 (16:37 +0000)
  o Add documentation to the make-src-bundle script.

bundle/scripts/make-src-bundle

index d4e0402e5026c2792400b8d4762f4c3775655f58..42214e6ab18295a9928107a333eb23b5b05d65eb 100755 (executable)
@@ -6,6 +6,33 @@ source ./scripts/version.sh
 NAME="gsi_openssh_bundle-$VERSION-src.tar.gz"
 
 cd work/
+
+#
+# create the bundle
+#
+
 $GPT_LOCATION/sbin/gpt-bundle -nodeps -srcdir=sources/ -output=$NAME gsi_openssh gsi_openssh_setup
-mv sources/gsi_openssh_bundle-$VERSION-src_src.tar.gz ../$NAME
+mv sources/gsi_openssh_bundle-$VERSION-src_src.tar.gz $NAME
+
+#
+# remove globus_core from it
+#
+
+mkdir -p temp/
+tar xvzf $NAME -C foo/
+cd temp/
+rm globus_core-99.tar.gz
+cat packaging_list | grep -v 'globus_core' > packaging_list
+
+#
+# create the bundle (redux)
+#
+
+tar cvzf $NAME *
 cd ../
+
+#
+# place the bundle in the parent directory
+#
+
+mv temp/$NAME ../
This page took 0.130559 seconds and 5 git commands to generate.