]> git.saurik.com Git - wxWidgets.git/blame - regen
removed 2nd frame from html test sample; test sample now shows DL,DT,DD support
[wxWidgets.git] / regen
CommitLineData
1eb6f40e 1#!/bin/ksh
e7bcded4
VZ
2#
3# regenerates the file given as command line argument by running config.status
4# (the file is supposed to be generated by configure script)
5#
6# Version: $Id$
7# Author: VZ
8################################################################################
9
10if test "x$1" = "x"; then
11 echo "Usage: $0 file_to_regenerate" >&2
12 exit 1
13fi
14
15export CONFIG_FILES=$1
16export CONFIG_HEADERS=
17./config.status
18exit $?