osmo-sgsn-master: Use separate osmo-sgsn.git repository

Several months ago, osmo-sgsn received its own repository, and is no
longer contained in the openbsc.git.
This commit is contained in:
Harald Welte 2018-02-18 11:31:13 +00:00
parent 8e57c545ab
commit 406b02090a
1 changed files with 4 additions and 4 deletions

View File

@ -24,13 +24,13 @@ RUN apt-get update && \
WORKDIR /tmp
RUN git clone git://git.osmocom.org/openbsc.git
ADD http://git.osmocom.org/openbsc/patch /tmp/commit-openbsc
RUN git clone git://git.osmocom.org/osmo-sgsn.git
ADD http://git.osmocom.org/osmo-sgsn/patch /tmp/commit
RUN cd openbsc/openbsc && \
RUN cd osmo-sgsn && \
git fetch && git checkout -f -B master origin/master && \
autoreconf -fi && \
./configure --enable-nat --enable-osmo-bsc --enable-smpp && \
./configure && \
make -j8 install && \
ldconfig