Changeset 698f3aa in mainline


Ignore:
Timestamp:
2006-06-07T20:48:40Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2d1a1d4
Parents:
9d371cb
Message:

Fix bad fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/config.py

    r9d371cb r698f3aa  
    11#!/usr/bin/env python
    22"""
    3 Kernel configuration script
     3Boot configuration script
    44"""
    55import sys
     
    88import commands
    99
    10 INPUT = 'kernel.config'
     10INPUT = 'boot.config'
    1111OUTPUT = 'Makefile.config'
    1212TMPOUTPUT = 'Makefile.config.tmp'
     
    488488    os.rename(TMPOUTPUT, OUTPUT)
    489489   
    490     if not defmode and dlg.yesno('Rebuild kernel?') == 'y':
     490    if not defmode and dlg.yesno('Rebuild everything?') == 'y':
    491491        os.execlp('make','make','clean','build')
    492492
Note: See TracChangeset for help on using the changeset viewer.