diff options
author | stwo <stwo@noemail.net> | 2010-12-17 17:55:45 (GMT) |
---|---|---|
committer | stwo <stwo@noemail.net> | 2010-12-17 17:55:45 (GMT) |
commit | 186a9578f088ae9cce2eda3ce217f6927796a1ee (patch) | |
tree | a27a5018d1117abb34b0850af74048ebb9f46fe2 /unix | |
parent | 169f57032bfcb35953034784eb947f957a3325b2 (diff) | |
download | tcl-186a9578f088ae9cce2eda3ce217f6927796a1ee.zip tcl-186a9578f088ae9cce2eda3ce217f6927796a1ee.tar.gz tcl-186a9578f088ae9cce2eda3ce217f6927796a1ee.tar.bz2 |
Use 'rpmbuild', not 'rpm' [Bug 2537626].
FossilOrigin-Name: a79e3d6c8c0939e6d68e889877fb259216c6c18e
Diffstat (limited to 'unix')
-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 8eebff2..9e48a49 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.311 2010/11/28 23:20:11 kennykb Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.312 2010/12/17 17:55:46 stwo Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -1871,13 +1871,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 |