]> git.saurik.com Git - wxWidgets.git/blame - regen
Fix for #15520: wxRichTextCtrl: Drawing the selection doesn't respect its container...
[wxWidgets.git] / regen
CommitLineData
b12915c1 1#!/bin/sh
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#
e7bcded4
VZ
6# Author: VZ
7################################################################################
8
9if test "x$1" = "x"; then
10 echo "Usage: $0 file_to_regenerate" >&2
11 exit 1
12fi
13
d497bc65
VZ
14if [ ! -x ./config.status ]; then
15 echo "Must be run from the top level wxWidgets build directory" >&2
16 exit 1
17fi
18
cc65fceb 19CONFIG_FILES=$*
b12915c1
VZ
20CONFIG_HEADERS=
21export CONFIG_FILES CONFIG_HEADERS
e7bcded4
VZ
22./config.status
23exit $?