Author Topic: *.am files changed in SVN - how to ?  (Read 5015 times)

Offline tiwag

  • Developer
  • Lives here!
  • *****
  • Posts: 1196
  • sailing away ...
    • tiwag.cb
*.am files changed in SVN - how to ?
« on: December 29, 2005, 04:51:42 pm »
if some *.am files have been changed in SVN,
what have i to do after updating ?

which of them (if any) do i have to run ?
./bootstrap
./configure


these are obligatory of course:
make
sudo make install


thx
( need still learning a lot about linux ... )

Offline Der Meister

  • Regular
  • ***
  • Posts: 307
Re: *.am files changed in SVN - how to ?
« Reply #1 on: December 29, 2005, 04:56:31 pm »
As far as I know ./configure is enough. ./bootstrap needs to be done only if configure.in changes. And of course make and make install are always necessary. ;)
Real Programmers don't comment their code. If it was hard to write, it should be hard to understand.
Real Programmers don't write in BASIC. Actually, no programmers write in BASIC, after the age of 12.

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: *.am files changed in SVN - how to ?
« Reply #2 on: December 29, 2005, 05:49:36 pm »
Usually, when any of these files change, just typing "make" gets the job done. So the answer is you don't have to do a thing.
Be patient!
This bug will be fixed soon...

Offline tiwag

  • Developer
  • Lives here!
  • *****
  • Posts: 1196
  • sailing away ...
    • tiwag.cb
Re: *.am files changed in SVN - how to ?
« Reply #3 on: December 29, 2005, 10:26:10 pm »
Usually, when any of these files change, just typing "make" gets the job done. So the answer is you don't have to do a thing.

pretty simple  :D