diff options
author | stwo <stwo> | 2010-12-17 17:56:18 (GMT) |
---|---|---|
committer | stwo <stwo> | 2010-12-17 17:56:18 (GMT) |
commit | 958c34d5fa6d735c404dbaba672425a58de90c88 (patch) | |
tree | fe8d656963dc0c0f1917c24b9e371c9ca75395ca /unix/Makefile.in | |
parent | 358e19e975dc6c8a25b8ff6cd4c5188ba3dae00e (diff) | |
download | tcl-958c34d5fa6d735c404dbaba672425a58de90c88.zip tcl-958c34d5fa6d735c404dbaba672425a58de90c88.tar.gz tcl-958c34d5fa6d735c404dbaba672425a58de90c88.tar.bz2 |
Use 'rpmbuild', not 'rpm' [Bug 2537626].
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index c65a3699..e860660 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.229.2.27 2010/11/30 20:59:28 andreas_kupries Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.229.2.28 2010/12/17 17:56:18 stwo Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -1589,13 +1589,13 @@ checkexports: $(TCL_LIB_FILE) # system. # -rpm: all /bin/rpm +rpm: all rm -f THIS.TCL.SPEC echo "%define _builddir `pwd`" > THIS.TCL.SPEC echo "%define _rpmdir `pwd`/RPMS" >> THIS.TCL.SPEC cat tcl.spec >> THIS.TCL.SPEC mkdir -p RPMS/i386 - rpm -bb THIS.TCL.SPEC + rpmbuild -bb THIS.TCL.SPEC mv RPMS/i386/*.rpm . rm -rf RPMS THIS.TCL.SPEC |