Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
759d0b9f
Commit
759d0b9f
authored
Jan 08, 2003
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Makefile.am
Makefile.am
+3
-3
No files found.
Makefile.am
View file @
759d0b9f
...
@@ -517,12 +517,12 @@ package-win32:
...
@@ -517,12 +517,12 @@ package-win32:
fi
;
done
fi
;
done
# don't include these two
# don't include these two
#rm -f tmp/plugins/gtk.so tmp/plugins/sdl.so
#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
mkdir
tmp/share
for
file
in
default8x16.psf
default8x9.psf
;
\
for
file
in
default8x16.psf
default8x9.psf
;
\
do
cp
share/$$file
tmp/share/
;
done
do
cp
share/$$file
tmp/share/
;
done
# Create package
# 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
# Clean up
rm
-Rf
tmp
rm
-Rf
tmp
...
@@ -547,7 +547,7 @@ package-beos:
...
@@ -547,7 +547,7 @@ package-beos:
for
i
in
dummy
$(PLUGIN_FILES)
;
do
if
test
"x$$i"
!=
"xdummy"
;
then
\
for
i
in
dummy
$(PLUGIN_FILES)
;
do
if
test
"x$$i"
!=
"xdummy"
;
then
\
$(INSTALL)
$$i
tmp/vlc/plugins/
;
\
$(INSTALL)
$$i
tmp/vlc/plugins/
;
\
fi
;
done
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
# Create package
mv
tmp/vlc
tmp/vlc-${VERSION}
mv
tmp/vlc
tmp/vlc-${VERSION}
(cd
tmp
;
find
vlc-${VERSION}
|
\
(cd
tmp
;
find
vlc-${VERSION}
|
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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