Personal tools

Difference between revisions of "Changing the version number for RPMs"

From Rivendell Wiki

Jump to: navigation, search
(Created page with "<pre> > I want to create RPM's from the CVS source code so I can compile on one > box and install it on others. I would like to edit the version # so I > know the difference b...")
 
(No difference)

Latest revision as of 11:42, 13 March 2018

> I want to create RPM's from the CVS source code so I can compile on one
> box and install it on others. I would like to edit the version # so I
> know the difference between official released RPM's and my "homemade"
> RPM's.

Near the top of 'configure.in', these two lines:

AC_INIT(rivendell,0.9.80,Fred Gleason <fredg@paravelsystems.com>) AM_INIT_AUTOMAKE(rivendell,0.9.80)

Change the version string, then do:

./autogen.sh

After that, the usual ./configure ; make ; make install gets it done.