Changing the version number for RPMs: Difference between revisions
Appearance
imported>WaybackImport Imported from Wayback via edit |
imported>ImportBot Imported from scrape |
||
| Line 16: | Line 16: | ||
After that, the usual ./configure ; make ; make install gets it done. | After that, the usual ./configure ; make ; make install gets it done. | ||
Latest revision as of 10:18, 9 May 2026
> 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.