Kaydet (Commit) cca3388b authored tarafından Christian Lohmaier's avatar Christian Lohmaier

small fixes to allow using --with-linked-git & --with-external-tar

üst 6e56de16
......@@ -32,6 +32,7 @@
/visibility.cxx
/post_download
/bin/repo-list
/src.downloaded
# misc
/set_soenv.last
......
......@@ -2,7 +2,7 @@
SHELL=/usr/bin/env bash
all: Makefile dmake/dmake@EXEEXT@ fetch
all: Makefile dmake/dmake@EXEEXT@ src.downloaded
@. ./*[Ee]nv.[Ss]et.sh && \
cd instsetoo_native && \
build.pl -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@
......@@ -34,11 +34,11 @@ dmake/dmake@EXEEXT@:
@. ./*[Ee]nv.[Ss]et.sh && \
./bootstrap
src/downloaded: ooo.lst download
src.downloaded: ooo.lst download
@. ./*[Ee]nv.[Ss]et.sh && \
$$SRC_ROOT/download $$SRC_ROOT/ooo.lst && touch $@
fetch: src/downloaded
fetch: src.downloaded
Makefile: configure.in set_soenv.in Makefile.in
./autogen.sh
......
......@@ -42,6 +42,9 @@ if [ -d .git ] ; then
mkdir clone
for i in $GIT_REPO_NAMES ; do
bin/git-new-workdir $GIT_LINK_SRC/$i clone/$i
for i in clone/$i/* ; do
ln -sf $i $(basename $i)
done
done
fi
fi
......@@ -229,3 +232,4 @@ fi
[ -x "post_download" ] || { echo "'post_download' script not found, run ./autogen.sh." ; exit 1 ; }
./post_download || exit 1
# vim:set shiftwidth=4 softtabstop=4 expandtab:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment