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
48b118b2
Commit
48b118b2
authored
Aug 25, 2005
by
Michael Pyne
Browse files
Backport bugfix for incorrect /admin symlinking to KDE 3.5.
svn path=/branches/KDE/3.5/kdesdk/scripts/kdesvn-build; revision=453034
parent
9650084d
Changes
1
Hide whitespace changes
Inline
Side-by-side
kdesvn-build
View file @
48b118b2
...
...
@@ -2908,6 +2908,9 @@ sub create_admin_dir
}
chdir
(
$fullpath
);
whisper
"
\t
Creating symbolic link to g[/admin directory].
";
return
symlink
$admindir
,
"
$fullpath
/admin
";
}
...
...
@@ -3075,15 +3078,6 @@ sub safe_create_build_system
chdir
(
$builddir
);
}
# Check for admin dir, if it doesn't exist, create a softlink
if
(
not
create_admin_dir
(
$module
))
{
warning
"
Unable to find /admin directory for y[
$module
], it probably
";
warning
"
won't build.
";
# But continue anyways, because in this case I'm just not sure that it
# won't work in the future. ;)
}
if
(
$instapps
)
{
open
(
INSTAPPS
,
"
>inst-apps
")
or
do
{
...
...
@@ -3356,6 +3350,15 @@ sub setup_build_system
}
}
# Check for admin dir, if it doesn't exist, create a softlink
if
(
not
create_admin_dir
(
$module
))
{
warning
"
Unable to find /admin directory for y[
$module
], it probably
";
warning
"
won't build.
";
# But continue anyways, because in this case I'm just not sure that it
# won't work in the future. ;)
}
my
$confpath
=
module_needs_builddir_help
(
$module
)
?
$builddir
:
$fullpath
;
if
(
$do_makeconf
or
not
-
e
"
$confpath
/configure
")
...
...
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