open5gs-master: Install open5gs-dbctl to /usr/bin

meson install doesn't install that file because it's aimed at
developers. However, debian package does install it manually in
debian/open5gs-common.install.
Hence, the app is available in open5gs-latest docker image, but not in
open5gs-master. Manually copy it to /usr/bin to have both behave the
same in this aspect.

Related: SYS#6588
Change-Id: I54a760d04e6522d843e6d65b94ef6067e502fbaa
This commit is contained in:
Pau Espin 2023-10-10 17:01:52 +02:00
parent b3c5679bec
commit a15ab99d07
1 changed files with 2 additions and 1 deletions

View File

@ -55,4 +55,5 @@ RUN cd $GITHUB_REPO && \
--libdir=lib/x86_64-linux-gnu \
--libexecdir=lib/x86_64-linux-gnu && \
meson configure build && \
ninja -C build install
ninja -C build install && \
install -m 0755 build/misc/db/open5gs-dbctl /usr/bin/open5gs-dbctl