Personal tools

Changing the version number for RPMs

From Rivendell Wiki

Revision as of 11:42, 13 March 2018 by Higgles (Talk | contribs) (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...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
> 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.