diff options
author | Herb Lewis <herb@samba.org> | 1998-11-16 16:36:57 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 1998-11-16 16:36:57 +0000 |
commit | 67d5258486da64e0b272093614d16e6e8794ee1c (patch) | |
tree | 2dd6901f5e911812fa6a3d6be9d980825ba11da5 | |
parent | 0b2e84243c54f86d25364a8b8ff2efeff2ac9b2d (diff) | |
download | samba-67d5258486da64e0b272093614d16e6e8794ee1c.tar.gz samba-67d5258486da64e0b272093614d16e6e8794ee1c.tar.bz2 samba-67d5258486da64e0b272093614d16e6e8794ee1c.zip |
add some more comments and clean it up a little more.
(This used to be commit 73e4b91a9d152eb3d56997c9108d536d38e3c07e)
-rwxr-xr-x | packaging/SGI/mkrelease.sh | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/packaging/SGI/mkrelease.sh b/packaging/SGI/mkrelease.sh index 4261d1ee00..921476f375 100755 --- a/packaging/SGI/mkrelease.sh +++ b/packaging/SGI/mkrelease.sh @@ -1,13 +1,25 @@ #!/bin/sh # This file goes through all the necessary steps to build a release package. -# You may specify a OS major version number (4, 5, or 6) to specify which -# OS release to build. If no version number is given it will default to 6. +# syntax: +# mkrelease.sh [5] [clean] [targets ....] +# +# You may specify 5 to build for IRIX 5.3 +# +# You can specify clean to do a make clean before building. Make clean +# will also run configure and generate the required Makefile. +# +# You can specify which targets to build. If targets are specified, the +# specified targets will be built but inst packages will not be generated. doclean="" SGI_ABI=-n32 CC=cc +if [ ! -f ../../source/Makefile ]; then + doclean="clean" +fi + if [ "$1" = "clean" ]; then doclean=$1 shift @@ -50,7 +62,7 @@ if [ "$doclean" = "clean" ]; then fi cd ../../source -if [ "$doclean" = "clean" -o ! -f Makefile ]; then +if [ "$doclean" = "clean" ]; then echo Create SGI specific Makefile chmod +x configure chmod +x configure.developer @@ -79,6 +91,13 @@ fi cd ../packaging/SGI +# +# Don't generate packages if targets were specified +# +if [ "$1" != "" ]; then + exit 0; +fi + # generate the packages # echo Generating Inst Packages |