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
759d0b9f
Commit
759d0b9f
authored
Jan 08, 2003
by
sigmunau
Browse files
use *$(LIBEXT) and not *.so in package-win32 and package-beos targets. Also
a minor change in argumets passed to nsis
parent
d95b6ba1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile.am
View file @
759d0b9f
...
...
@@ -517,12 +517,12 @@ package-win32:
fi
;
done
# don't include these two
#rm -f tmp/plugins/gtk.so tmp/plugins/sdl.so
for
i
in
dummy
tmp/plugins/*
.so
;
do
if
test
$$i
!=
tmp/plugins/intfwin.so
-a
$$
i
!=
dummy
;
then
$(STRIP)
$$
i
;
fi
;
done
for
i
in
dummy
tmp/plugins/*
$(LIBEXT)
;
do
if
test
$$i
!=
tmp/plugins/intfwin.so
-a
$$
i
!=
dummy
;
then
$(STRIP)
$$
i
;
fi
;
done
mkdir
tmp/share
for
file
in
default8x16.psf
default8x9.psf
;
\
do
cp
share/$$file
tmp/share/
;
done
# Create package
wine
~/.wine/fake_windows/Program\
Files/NSIS/makensis.exe
--
/
DVERSION
=
${VERSION}
/CD
tmp/nsi
wine
~/.wine/fake_windows/Program\
Files/NSIS/makensis.exe
--
/
DVERSION
=
${VERSION}
tmp/nsi
# Clean up
rm
-Rf
tmp
...
...
@@ -547,7 +547,7 @@ package-beos:
for
i
in
dummy
$(PLUGIN_FILES)
;
do
if
test
"x$$i"
!=
"xdummy"
;
then
\
$(INSTALL)
$$i
tmp/vlc/plugins/
;
\
fi
;
done
for
i
in
dummy
tmp/vlc/plugins/*
.so
;
do
if
test
$$i
!=
dummy
;
then
$(STRIP)
$$
i
;
fi
;
done
for
i
in
dummy
tmp/vlc/plugins/*
$(LIBEXT)
;
do
if
test
$$i
!=
dummy
;
then
$(STRIP)
$$
i
;
fi
;
done
# Create package
mv
tmp/vlc
tmp/vlc-${VERSION}
(cd
tmp
;
find
vlc-${VERSION}
|
\
...
...
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