Change variable naming to be more configure-like (except for --confdir)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7979 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
19222ed45c
commit
a03be40e62
|
@ -20,12 +20,12 @@ my %vars = (
|
||||||
LDFLAGS => '@LDFLAGS@',
|
LDFLAGS => '@LDFLAGS@',
|
||||||
SOLINK => '@SOLINK@',
|
SOLINK => '@SOLINK@',
|
||||||
|
|
||||||
MODULES_DIR => '@MODULES_DIR@',
|
MODULESDIR => '@MODULES_DIR@',
|
||||||
LIB_DIR => '@LIB_DIR@',
|
LIBDIR => '@LIB_DIR@',
|
||||||
BIN_DIR => '@BIN_DIR@',
|
BINDIR => '@BIN_DIR@',
|
||||||
INC_DIR => '@INC_DIR@',
|
INCLUDEDIR => '@INC_DIR@',
|
||||||
DB_DIR => '@DB_DIR@',
|
DBDIR => '@DB_DIR@',
|
||||||
CFG_DIR => '@CFG_DIR@',
|
CONFDIR => '@CFG_DIR@',
|
||||||
PREFIX => '@PREFIX@'
|
PREFIX => '@PREFIX@'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@ sub fsxs_usage {
|
||||||
|
|
||||||
print "Variable names for \"fsxs show\" / \"fsxs --var\":\n";
|
print "Variable names for \"fsxs show\" / \"fsxs --var\":\n";
|
||||||
print "\tcflags ldflags libs solink includes cc ld mkdir install\n";
|
print "\tcflags ldflags libs solink includes cc ld mkdir install\n";
|
||||||
print "\tprefix lib_dir modules_dir db_dir inc_dir cfg_dir bin_dir\n";
|
print "\tprefix libdir modulesdir dbdir includedir confdir bindir\n";
|
||||||
print "\n";
|
print "\n";
|
||||||
|
|
||||||
print "Examples:\n";
|
print "Examples:\n";
|
||||||
|
@ -135,7 +135,7 @@ sub fsxs_link {
|
||||||
|
|
||||||
sub fsxs_install {
|
sub fsxs_install {
|
||||||
my @files = @_;
|
my @files = @_;
|
||||||
my $destination = $vars{DESTDIR} . $vars{MODULES_DIR};
|
my $destination = $vars{DESTDIR} . $vars{MODULESDIR};
|
||||||
|
|
||||||
# check if destination exists, create if it doesn't
|
# check if destination exists, create if it doesn't
|
||||||
if( ! -e $destination ) {
|
if( ! -e $destination ) {
|
||||||
|
|
Loading…
Reference in New Issue