Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
458f08e2
Commit
458f08e2
authored
Mar 28, 2006
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't strip windows builds when running make package-win-common-devel
parent
f0797213
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
Makefile.am
Makefile.am
+10
-4
No files found.
Makefile.am
View file @
458f08e2
...
...
@@ -619,10 +619,8 @@ package-win-common:
# Copy relevant files
cp
"$(top_builddir)/vlc$(EXEEXT)"
"$(top_builddir)/vlc-${VERSION}/"
cp
"$(top_srcdir)/vlc.exe.manifest"
"$(top_builddir)/vlc-${VERSION}/"
$(STRIP)
"$(top_builddir)/vlc-${VERSION}/vlc$(EXEEXT)"
if
BUILD_SHARED
cp
"src/libvlc$(LIBEXT)"
"vlc-${VERSION}/"
$(STRIP)
"vlc-${VERSION}/libvlc$(LIBEXT)"
endif
for
file
in
AUTHORS
MAINTAINERS
THANKS
NEWS
COPYING
README
;
\
...
...
@@ -674,7 +672,6 @@ endif
if
BUILD_MOZILLA
mkdir
-p
"$(top_builddir)/vlc-${VERSION}/mozilla"
cp
$(top_builddir)/mozilla/*$(LIBEXT)
$(top_builddir)/vlc-${VERSION}/mozilla/
;
$(STRIP)
$(top_builddir)/vlc-${VERSION}/mozilla/*$(LIBEXT);
cp
$(top_builddir)/mozilla/vlcintf.xpt
$(top_builddir)/vlc-${VERSION}/mozilla/
;
endif
...
...
@@ -685,7 +682,6 @@ if BUILD_ACTIVEX
unix2dos
$(top_builddir)/vlc-${VERSION}/activex/*
;
cp
$(top_builddir)/activex/*$(LIBEXT)
$(top_builddir)/vlc-${VERSION}/activex/
;
$(STRIP)
$(top_builddir)/vlc-${VERSION}/activex/*$(LIBEXT);
endif
# Rebase all those DLLs to speed up loading (need cygwin rebase)
if
rebase
-b
0x42
/dev/null
>/dev/null
2>&1;
then
\
...
...
@@ -725,8 +721,18 @@ package-win32-base-debug: package-win-common
package-win32-base
:
package-win32-base-debug
$(STRIP)
"
$(top_builddir)
/vlc-
${VERSION}
/vlc
$(EXEEXT)
"
if
BUILD_SHARED
$(STRIP)
"vlc-${VERSION}/libvlc$(LIBEXT)"
endif
for
i
in
""
$(top_builddir)/vlc-${VERSION}/plugins/*$(LIBEXT)
;
\
do
if
test
-n
"$$i"
;
then
$(STRIP)
"$$i"
;
fi
;
done
if
BUILD_MOZILLA
$(STRIP)
$(top_builddir)/vlc-${VERSION}/mozilla/*$(LIBEXT);
endif
if
BUILD_ACTIVEX
$(STRIP)
$(top_builddir)/vlc-${VERSION}/activex/*$(LIBEXT);
endif
package-win32-base-exe
:
package-win32-base
...
...
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