Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
fbc31765
Commit
fbc31765
authored
Jul 16, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32: man find
parent
93a913a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
Makefile.am
Makefile.am
+4
-4
No files found.
Makefile.am
View file @
fbc31765
...
...
@@ -719,7 +719,7 @@ package-win-common: install
fi
# Executables, major libs+manifests
find
$(destdir)
-maxdepth
4
-name
"*$(LIBEXT)"
-o
-name
"*$(EXEEXT)"
-exec
cp
{}
"$(win32_destdir)/"
\;
find
$(destdir)
-maxdepth
4
\(
-name
"*$(LIBEXT)"
-o
-name
"*$(EXEEXT)"
\)
-exec
cp
{}
"$(win32_destdir)/"
\;
for
file
in
$(top_srcdir)/extras/package/win32/vlc$(EXEEXT).manifest
\
$(top_srcdir)/extras/package/win32/libvlc$(LIBEXT).manifest;
\
do
cp
$$file
"$(win32_destdir)/"
;
done;
...
...
@@ -819,16 +819,16 @@ if BUILD_ACTIVEX
cp
$(srcdir)/projects/activex/test.html
$(win32_destdir)/sdk/
endif
find
$(win32_destdir)
-type
f
-name
"*xml"
-or
-name
"*html"
-or
-name
'*js'
-or
-name
'*css'
-or
-name
'*hosts'
-or
-iname
'*txt'
-or
-name
'*.cfg'
-or
-name
'*lua'
-exec
$(U2D)
{}
\;
find
$(win32_destdir)
-type
f
\(
-name
"*xml"
-or
-name
"*html"
-or
-name
'*js'
-or
-name
'*css'
-or
-name
'*hosts'
-or
-iname
'*txt'
-or
-name
'*.cfg'
-or
-name
'*.lua'
\)
-exec
$(U2D)
{}
\;
#Enable DEP and ASLR for all the binaries
if
USE_PEFLAGS
find
$(win32_destdir)
-type
f
-name
'*$(LIBEXT)'
-print
-o
-name
'*$(EXEEXT)'
-print
-exec
$(PEFLAGS)
--dynamicbase
=
true
--nxcompat
=
true
{}
\;
find
$(win32_destdir)
-type
f
\(
-name
'*$(LIBEXT)'
-print
-o
-name
'*$(EXEEXT)'
-print
\)
-exec
$(PEFLAGS)
--dynamicbase
=
true
--nxcompat
=
true
{}
\;
endif
# Strip DLLs
package-win-base
:
package-win-common
find
$(win32_destdir)
-
name
'*
$(LIBEXT)
'
-or
-name
'*
$(EXEEXT)
'
|
while
read
i
;
\
find
$(win32_destdir)
-
type
f
\(
-name
'*
$(LIBEXT)
'
-or
-name
'*
$(EXEEXT)
'
\)
|
while
read
i
;
\
do if
test
-n
"
$$
i"
;
then
\
$(OBJCOPY)
--only-keep-debug
"
$$
i"
"
$$
i.dbg"
;
\
$(OBJCOPY)
--strip-all
"
$$
i"
;
\
...
...
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