Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
281a74da
Commit
281a74da
authored
Jan 01, 2005
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
spaces in path fixes
Originally committed as revision 3791 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
2d2651f8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
configure
configure
+3
-3
regression.sh
tests/regression.sh
+3
-3
No files found.
configure
View file @
281a74da
...
...
@@ -1244,7 +1244,7 @@ if test "$lshared" = "yes" ; then
echo
"PIC=-fPIC"
>>
config.mak
fi
echo
"EXTRALIBS=
$extralibs
"
>>
config.mak
version
=
`
grep
'#define FFMPEG_VERSION '
$source_path
/libavcodec/avcodec.h
|
version
=
`
grep
'#define FFMPEG_VERSION '
"
$source_path
/libavcodec/avcodec.h"
|
cut
-d
'"'
-f
2
`
echo
"VERSION=
$version
"
>>
config.mak
# if you do not want to use encoders, disable that.
...
...
@@ -1460,10 +1460,10 @@ if test "$source_path_used" = "yes" ; then
mkdir
-p
$dir
done
for
f
in
$FILES
;
do
ln
-sf
$source_path
/
$f
$f
ln
-sf
"
$source_path
/
$f
"
$f
done
fi
echo
"SRC_PATH=
$source_path
"
>>
config.mak
echo
"SRC_PATH=
'
$source_path
'
"
>>
config.mak
if
test
"
$amr_wb
"
=
"yes"
;
then
echo
"#define AMR_WB 1"
>>
$TMPH
...
...
tests/regression.sh
View file @
281a74da
...
...
@@ -5,14 +5,14 @@
#
#set -x
# Even in the 21st century some diffs are not supporting -u.
diff
-u
$0
$0
>
/dev/null 2>&1
diff
-u
"
$0
"
"
$0
"
>
/dev/null 2>&1
if
[
$?
-eq
0
]
;
then
diff_cmd
=
"diff -u"
else
diff_cmd
=
"diff"
fi
diff
-w
$0
$0
>
/dev/null 2>&1
diff
-w
"
$0
"
"
$0
"
>
/dev/null 2>&1
if
[
$?
-eq
0
]
;
then
diff_cmd
=
"
$diff_cmd
-w"
fi
...
...
@@ -644,7 +644,7 @@ fi
if
$diff_cmd
$logfile
$reffile
;
then
if
$diff_cmd
"
$logfile
"
"
$reffile
"
;
then
echo
echo
Regression
test
succeeded.
exit
0
...
...
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