Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
82633df3
Commit
82633df3
authored
Jul 24, 2009
by
JP Dinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify vlc_about.h generation.
parent
b0feb464
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
src/Makefile.am
src/Makefile.am
+6
-3
No files found.
src/Makefile.am
View file @
82633df3
...
...
@@ -121,14 +121,17 @@ noinst_HEADERS = \
mkdir
-p
--
../include
echo
"/* Automatically generated file - DO NOT EDIT */"
>
"
$@
.tmp"
echo
"static const char psz_license[] ="
>>
"
$@
.tmp"
cat
$(top_srcdir)
/COPYING |
sed
s/
'"'
/
'\\"'
/g |
$(AWK)
'{ print "\""$$0"\\n\"" }'
>>
"
$@
.tmp"
sed
's/"/\\"/g;s/^.*$$/\"&\\n\"/'
"
$(top_srcdir)
/COPYING"
>>
"
$@
.tmp"
echo
";"
>>
"
$@
.tmp"
echo
"static const char psz_thanks[] ="
>>
"
$@
.tmp"
grep
-v
'$$Id:'
$(top_srcdir)
/THANKS |
sed
s/
'"'
/
'\\"'
/g |
$(AWK)
'{ print "\""$$0"\\n\"" }'
|sed s/
"<.*.> "
//
>>
"
$@
.tmp"
sed
'/\$$Id:/d;s/"/\\"/g;s/<.*.> //;s/^.*$$/\"&\\n\"/'
\
"
$(top_srcdir)
/THANKS"
>>
"
$@
.tmp"
echo
";"
>>
"
$@
.tmp"
echo
"static const char psz_authors[] ="
>>
"
$@
.tmp"
grep
N:
$(top_srcdir)
/AUTHORS |
cut
-d
" "
-f
2- |
sed
s/
'"'
/
'\\"'
/g |
$(AWK)
'{ print "\""$$0"\\n\"" }'
>>
"
$@
.tmp"
sed
-n
'/^N: /{;s///;s/"/\\"/g;s/^.*$$/\"&\\n\"/;p;}'
\
"
$(top_srcdir)
/AUTHORS"
>>
"
$@
.tmp"
echo
";"
>>
"
$@
.tmp"
mv
-f
--
"$@.tmp"
"$@"
###############################################################################
...
...
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