diff options
author | Gerald Carter <jerry@samba.org> | 2006-03-16 13:48:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:15:33 -0500 |
commit | a6da854a08e4ba9f50d4fd66bf225062dffea209 (patch) | |
tree | 1c3c5409abc32dc8f456c4957d7e501282999aa8 | |
parent | 962e42caa5d2b53b849a90d7c1c2bf0d45e26d4e (diff) | |
download | samba-a6da854a08e4ba9f50d4fd66bf225062dffea209.tar.gz |
r14475: patch from Oliver Schulze L. <oliver@samera.com.py> for BUG 3580. Make RHEL makerpms.sh script more verbose and add some additional options to the rpmbuild process
(This used to be commit 7d73973db1a9133d6165b52031f09257046a64f7)
-rw-r--r-- | packaging/RHEL/makerpms.sh.tmpl | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/packaging/RHEL/makerpms.sh.tmpl b/packaging/RHEL/makerpms.sh.tmpl index e6c178f6f3c..ebaa4e649f7 100644 --- a/packaging/RHEL/makerpms.sh.tmpl +++ b/packaging/RHEL/makerpms.sh.tmpl @@ -11,6 +11,8 @@ # /usr/src/redhat directory # +EXTRA_OPTIONS="$1" + SPECDIR=`rpm --eval %_specdir` SRCDIR=`rpm --eval %_sourcedir` @@ -39,7 +41,9 @@ esac ( cd ../../source; if [ -f Makefile ]; then make distclean; fi ) ( cd ../../.. ; chown -R ${USERID}.${GRPID} samba-${VERSION} ) +echo -n "Creating samba-${VERSION}.tar.bz2 ... " ( cd ../../.. ; tar --exclude=.svn -cf - samba-${VERSION}/. | bzip2 > ${SRCDIR}/samba-${VERSION}.tar.bz2 ) +echo "Done." ## ## copy additional source files @@ -51,9 +55,9 @@ cp -p ${SPECFILE} ${SPECDIR} ## ## Build ## -echo Getting Ready to build release package +echo "$(basename $0): Getting Ready to build release package" cd ${SPECDIR} -${RPM} -ba --clean --rmsource $SPECFILE +${RPM} -ba --clean --rmsource $EXTRA_OPTIONS $SPECFILE -echo Done. +echo "$(basename $0): Done." |