Allow out of src tree builds
Allows builds from a previously bootstrapped source, without touching it. (docker volume mounted as read-only)
Merge request reports
Activity
Filter activity
added 23 commits
-
b982609e...510543b6 - 20 commits from branch
videolan:master
- f7051e8c - compile_libvlc.sh: add directory argument when generating pc
- 7e5715bd - compile-libvlc.sh: pass VLC_TARBALLS parameter
- 07545852 - compile-libvlc.sh: allow out of src tree builds
Toggle commit list-
b982609e...510543b6 - 20 commits from branch
- Resolved by François Cartegnie
Depends on JNI_PATH variable from vlc-android!1637 (merged)
added 1 commit
- f944e995 - compile-libvlc.sh: allow out of src tree builds
- Resolved by François Cartegnie
113 113 ############ 114 # VLC PATH # 114 # PATHS # 115 115 ############ 116 SRC_DIR=$PWD 117 if [ -f $SRC_DIR/src/libvlc.h ];then 118 VLC_SRC_DIR="$SRC_DIR" 119 elif [ -d $SRC_DIR/vlc ];then 120 VLC_SRC_DIR=$SRC_DIR/vlc 121 else 116 : ${VLC_SRC_DIR:=$PWD} 117 if [ ! -f $SRC_DIR/src/libvlc.h ] && [ -d $SRC_DIR/vlc ]; then 118 VLC_SRC_DIR="$VLC_SRC_DIR/vlc" 119 fi 120 121 if [ -z $VLC_SRC_DIR ];then changed this line in version 5 of the diff
- Resolved by François Cartegnie
- Resolved by François Cartegnie
- Resolved by François Cartegnie
added 1 commit
- bbc4c69e - compile-libvlc.sh: allow out of src tree builds
added 2 commits
added 2 commits
added 2 commits
111 111 fi Is this commit allowing out of libvlcjni src or out vlc src tree build ?
It is breaking build from vlc-android.
Edited by Thomas Guillem
Superseded by !66 (merged)