Skip to content

Commit

Permalink
build: Fixes for packaging, and linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
mefistotelis committed Jan 8, 2024
1 parent 13ea98c commit b1c229a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
apt update
apt install -y \
gcc-multilib g++-multilib \
lib32z1 libc6-dev:i386
lib32z1 libc6-dev:i386 gettext:i386
apt install -y \
build-essential autoconf libtool make
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ install installdirs: SUBDIRS = src
doc_DATA = COPYING
docdir = $(prefix)/usr/$(PACKAGE)

EXTRA_DIST = GPL3 res
EXTRA_DIST = LICENSE res
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ AM_CONDITIONAL([HAS_WINDRES], [test -n "${WINDRES}" -a "$have_windows" = "yes"])
# LIBS variable is updated to include that library while linking.

AC_CHECK_LIB([intl], [libintl_version], [], [
AC_MSG_FAILURE([library libintl not found])
AC_MSG_WARN([library libintl not found, either built into glibc or missing])
])

# Required by libbfd
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ install-exec-hook:
xargs -I {} find $(shell dirname $(shell which ${CXX})) -name '{}'))
## Remove duplicates
$(eval lib_SHARED_INSTALL := $(sort $(lib_SHARED_INSTALL)))
cp $(lib_SHARED_INSTALL) $(DESTDIR)${prefix}/opt/$(PACKAGE)
cp $(lib_SHARED_INSTALL) $(DESTDIR)${prefix}/usr/$(PACKAGE)
endif


Expand Down

0 comments on commit b1c229a

Please sign in to comment.