Changeset b3d1e11 in mainline


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

Fix bad fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/config.py

    rb2951e2 rb3d1e11  
    11#!/usr/bin/env python
    22"""
    3 Kernel configuration script
     3User space configuration script
    44"""
    55import sys
     
    88import commands
    99
    10 INPUT = 'kernel.config'
     10INPUT = 'uspace.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 user space?') == 'y':
    491491        os.execlp('make','make','clean','build')
    492492
Note: See TracChangeset for help on using the changeset viewer.