3f66f6a5b3
This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Name: wx-config-inplace
|
|
# Purpose: wx configuration in tree search and query tool
|
|
# Author: Ron <ron@debian.org>
|
|
# Modified by: VZ on 2005-09-20 to make it work with Bourne shell
|
|
# Created: 14/9/2004
|
|
# Copyright: (c) 2004 Ron <ron@debian.org>
|
|
# Licence: wxWindows licence
|
|
############################################################################
|
|
|
|
# Not much to do here. Just initialise prefix to point things into the
|
|
# local tree by default and then source the real wx-config if it all still
|
|
# looks sane.
|
|
|
|
check_dirname()
|
|
{
|
|
if [ ! -d "$1" ]; then
|
|
printf "\n *** Error: Directory '$1'\n" 1>&2
|
|
printf " no longer exists.\n\n" 1>&2
|
|
exit 1
|
|
fi
|
|
( cd $1 && pwd )
|
|
}
|
|
|
|
# set the variables which allow the real wx-config to check if we're using it
|
|
# in place or after installation
|
|
this_prefix=`check_dirname "@abs_top_srcdir@"`
|
|
if [ "x$this_prefix" = "x" ]; then
|
|
exit 1
|
|
fi
|
|
this_exec_prefix=`check_dirname "@abs_top_builddir@"`
|
|
if [ "x$this_exec_prefix" = "x" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
. "$this_exec_prefix/lib/wx/config/@TOOLCHAIN_FULLNAME@"
|
|
|