Jump to content

Changing the version number for RPMs

From Rivendell Wiki
Revision as of 20:38, 6 December 2019 by imported>WaybackImport (Imported from Wayback via edit)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
> 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 <[email protected]>) 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.