Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
8c4ffec4
Commit
8c4ffec4
authored
Jun 25, 2005
by
Rémi Denis-Courmont
Browse files
Remove plugins and builtins with make uninstall (closes #231)
parent
8f7465c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile.am
View file @
8c4ffec4
...
...
@@ -487,6 +487,20 @@ endif
# the opposite of install-{data,exec}-local
uninstall-local
:
@
for
i
in
""
`
$(VLC_CONFIG)
--target
plugin
`
;
do if
test
-n
"
$$
i"
;
then
\
echo rm
-f
"
$(DESTDIR)$(libdir)
/vlc/
`
echo
$$
i |
sed
-e
's,.*modules/\([^/]*\).*,\1,'
`
/
$
$(
basename
$$
i
$(LIBEXT)
)
"
;
\
rm
-f
"
$(DESTDIR)$(libdir)
/vlc/
`
echo
$$
i |
sed
-e
's,.*modules/\([^/]*\).*,\1,'
`
/
$
$(
basename
$$
i
$(LIBEXT)
)
"
;
\
fi
;
done
@
for
i
in
""
`
$(VLC_CONFIG)
--target
builtin
`
;
do if
test
-n
"
$$
i"
;
then
\
echo rm
-f
"
$(DESTDIR)$(libdir)
/vlc/
$
$(
basename
$$
i
)
"
;
\
rm
-f
"
$(DESTDIR)$(libdir)
/vlc/
$
$(
basename
$$
i
)
"
;
\
fi
;
done
if
BUILD_MOZILLA
@for
i
in
""
`$(VLC_CONFIG)
--target
builtin
pic`
;
do
if
test
-n
"$$i"
;
then
\
echo
rm
-f
"$$i"
"$(DESTDIR)$(libdir)/vlc/$$(basename $$i)"
;
\
rm
-f
"$$i"
"$(DESTDIR)$(libdir)/vlc/$$(basename $$i)"
;
\
fi
;
done
endif
for
i
in
""
$(ALIASES)
;
do
if
test
-n
"$$i"
;
then
\
rm
-f
"$(DESTDIR)$(bindir)/$$i"
;
\
fi
;
done
...
...
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