Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Johan Ouwerkerk
kdesrc-build
Commits
529a97f9
Commit
529a97f9
authored
Jul 15, 2005
by
David Faure
Browse files
Support for per-module prefix
svn path=/trunk/KDE/kdesdk/scripts/kdesvn-build; revision=434866
parent
b89f6bea
Changes
2
Hide whitespace changes
Inline
Side-by-side
kdesvn-build
View file @
529a97f9
...
...
@@ -2563,9 +2563,11 @@ sub safe_configure
if
(
$module
ne
'
qt-copy
')
{
my
$kdedir
=
get_option
('
global
',
'
kdedir
');
push
@commands
,
"
CXXFLAGS=
$cxxflags
"
if
$cxxflags
;
push
@commands
,
"
--prefix=
$kdedir
";
my
$kdedir
=
get_option
('
global
',
'
kdedir
');
my
$prefix
=
get_option
(
$module
,
'
prefix
');
$prefix
=
$kdedir
unless
defined
(
$prefix
);
push
@commands
,
"
--prefix=
$prefix
";
# We're special casing these modules because we're using the lndir
# hack for them.
...
...
kdesvn-buildrc-sample
View file @
529a97f9
...
...
@@ -64,6 +64,12 @@ global
# install KDE anywhere on your system, in conjunction with the
# make-install-prefix option.
# kdedir ~/kde
#
# You can overwrite the installation directory for a given module using
# the per-module "prefix" option. Note that when doing this you need to
# set KDEDIRS, PATH and LD_LIBRARY_PATH to point to both directories,
# and that you should use separate test users or KDEHOME values to separate
# the ksycoca databases. Only set prefix if you know what you're doing.
# If you would like install KDE to the system (DO NOT INSTALL *over* a prior
# installation!), then you'll probably need to use sudo to install everything.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment