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
3e48c330
Commit
3e48c330
authored
Feb 28, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix inverted shell negation "! test" -> "test !"
parent
6e78f7b4
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
configure.ac
configure.ac
+3
-3
modules/genmf
modules/genmf
+1
-1
projects/macosx/framework/Pre-Compile.sh
projects/macosx/framework/Pre-Compile.sh
+2
-2
projects/macosx/frontrow_plugin/BackRowHeaders/install.sh
projects/macosx/frontrow_plugin/BackRowHeaders/install.sh
+1
-1
test/modules/stream_filter/httplive/traffic-shaping.sh
test/modules/stream_filter/httplive/traffic-shaping.sh
+1
-1
No files found.
configure.ac
View file @
3e48c330
...
...
@@ -174,7 +174,7 @@ case "${host_os}" in
[AS_HELP_STRING([--with-macosx-sdk=DIR],
[compile using the SDK in DIR])])
test "${with_macosx_sdk}" = "" && with_macosx_sdk=/Developer/SDKs/MacOSX10.6.sdk
! test
-d "${with_macosx_sdk}" && AC_MSG_ERROR([SDK "${with_macosx_sdk}" not found])
test !
-d "${with_macosx_sdk}" && AC_MSG_ERROR([SDK "${with_macosx_sdk}" not found])
AC_ARG_WITH(macosx-version-min,
[AS_HELP_STRING([--with-macosx-version-min=VERSION],
[compile for MacOS X VERSION and above])])
...
...
@@ -3693,14 +3693,14 @@ then
VLC_ADD_LIBS([macosx], [-Wl,-framework,QTKit -Wl,-framework,IOKit -Wl,-framework,AddressBook -Wl,-framework,WebKit])
if
! test
-d ${CONTRIB_DIR}/Sparkle.framework
if
test !
-d ${CONTRIB_DIR}/Sparkle.framework
then
AC_MSG_ERROR([Sparkle framework is required and was not found in ${CONTRIB_DIR}])
fi
VLC_ADD_LIBS([macosx], [-F${CONTRIB_DIR} -Wl,-framework,Sparkle])
VLC_ADD_OBJCFLAGS([macosx], [-F${CONTRIB_DIR}])
if
! test
-d ${CONTRIB_DIR}/BGHUDAppKit.framework
if
test !
-d ${CONTRIB_DIR}/BGHUDAppKit.framework
then
AC_MSG_ERROR([BGHUDAppKit framework is required and was not found in ${CONTRIB_DIR}])
fi
...
...
modules/genmf
View file @
3e48c330
...
...
@@ -13,7 +13,7 @@ while test "$1"
do
dir
=
"
$1
"
modf
=
"modules/
${
dir
}
/Modules.am"
if
!
test
-f
"
$modf
"
;
then
if
test
!
-f
"
$modf
"
;
then
echo
"
$modf
does not exist!"
>
&2
exit
1
fi
...
...
projects/macosx/framework/Pre-Compile.sh
View file @
3e48c330
...
...
@@ -88,11 +88,11 @@ vlc_install_object() {
local
lib_install_prefix
=
"@loader_path/../lib"
fi
if
!
test
-e
${
src_lib
}
;
then
if
test
!
-e
${
src_lib
}
;
then
return
fi
if
(
(
!
test
-e
${
lib_dest
}
)
||
test
${
src_lib
}
-nt
${
lib_dest
}
)
;
then
if
(
(
test
!
-e
${
lib_dest
}
)
||
test
${
src_lib
}
-nt
${
lib_dest
}
)
;
then
mkdir
-p
${
dest_dir
}
...
...
projects/macosx/frontrow_plugin/BackRowHeaders/install.sh
View file @
3e48c330
#!/bin/sh
if
!
test
-e
$PWD
/Headers/BREvent.h
;
then
if
test
!
-e
$PWD
/Headers/BREvent.h
;
then
echo
"Please run this script from BackRowHeaders directory"
exit
1
else
...
...
test/modules/stream_filter/httplive/traffic-shaping.sh
View file @
3e48c330
...
...
@@ -34,7 +34,7 @@ function traffic_shaping() {
# tc qdisc add dev eth2 root tbf rate 50kbit burst 2kbit latency 70ms peakrate 52kbit mtu 1500
traffic_shaping
if
!
test
"
${
RESULT
}
"
=
"0"
;
then
if
test
"
${
RESULT
}
"
!
=
"0"
;
then
exit
1
fi
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