Changeset 05aec0c in rtems


Ignore:
Timestamp:
06/30/08 13:36:20 (16 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.9, 5, master
Children:
4c656cb
Parents:
961571b
Message:

Add magic to update cpuopt.h.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpukit/acinclude.m4

    r961571b r05aec0c  
    4141#endif /* _RTEMS_SCORE_CPUOPTS_H */
    4242_ACEOF
     43
     44AS_MKDIR_P(score/include/rtems/score)
     45AS_IF([test -f score/include/rtems/score/cpuopts.h],
     46[
     47  AS_IF([cmp -s score/include/rtems/score/cpuopts.h cpuopts.tmp 2>/dev/null],
     48  [
     49    AC_MSG_NOTICE([score/include/rtems/score/cpuopts.h is unchanged])
     50    rm -f cpuopts.tmp
     51  ],[
     52    AC_MSG_NOTICE([creating score/include/rtems/score/cpuopts.h])
     53    rm -f score/include/rtems/score/cpuopts.h
     54    mv cpuopts.tmp score/include/rtems/score/cpuopts.h
     55  ])
     56],[
     57    AC_MSG_NOTICE([creating score/include/rtems/score/cpuopts.h])
     58    rm -f score/include/rtems/score/cpuopts.h
     59    mv cpuopts.tmp score/include/rtems/score/cpuopts.h
    4360])
    44 
     61])
Note: See TracChangeset for help on using the changeset viewer.