Skip to content

Commit

Permalink
Fix rm2fb-original build
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems committed Sep 12, 2024
1 parent e947e98 commit 50de93d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ RECIPES_CLEAN=$(foreach app, $(RECIPES), $(app)-clean)

ifeq ($(RUNNER_DEBUG), 1)
FLAGS+= --verbose
else
ifeq ($(VERBOSE), 1)
FLAGS+= --verbose
endif
endif

define USAGE
Expand Down
2 changes: 1 addition & 1 deletion package/rm2fb-original/package
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,12 @@ rm2fb-client() {
replaces=(rm2fb)

package() {
set -x
libname="librm2fb_client.so"
libnamever="$libname.$_libver"
install -D -m 644 -t "$pkgdir"/opt/lib "$srcdir"/src/client/"$libnamever"
install -d "$pkgdir"/usr/lib
ln -s /opt/lib/"$libnamever" "$pkgdir"/usr/lib/"$libnamever"
ln -s /opt/lib/"$libnamever" "$pkgdir"/opt/lib/"$libname"

for dest in opt/lib usr/lib; do
ln -s "$libnamever" "$pkgdir/$dest/${libnamever%.*.*.*}"
Expand Down

0 comments on commit 50de93d

Please sign in to comment.