summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2006-03-16 13:48:01 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:15:33 -0500
commit7d73973db1a9133d6165b52031f09257046a64f7 (patch)
treec1c3b1f880191306e7dcd038989d0451291006fa /packaging
parentc81eb71834dc827db63c8adb3f816bbbe916473c (diff)
downloadsamba-7d73973db1a9133d6165b52031f09257046a64f7.tar.gz
samba-7d73973db1a9133d6165b52031f09257046a64f7.tar.xz
samba-7d73973db1a9133d6165b52031f09257046a64f7.zip
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
Diffstat (limited to 'packaging')
-rw-r--r--packaging/RHEL/makerpms.sh.tmpl10
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."