Skip to content

Commit

Permalink
fix(build/mk.config): Fix a silly error.
Browse files Browse the repository at this point in the history
  • Loading branch information
takusuman committed Aug 22, 2022
1 parent b399478 commit 9367a69
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build/mk.config
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ TTYGRP = -g utmp
# the static libraries on the system. In Copacabana Linux, static libraries stay
# at the /usr/lib directory, while dynamic ones stay at /lib.
#
LIBPATH = -L/usr/bin -L/usr/ccs/bin
LIBPATH = -L/usr/lib -L/usr/ccs/lib

#
# Curses library. Change to -lncurses if necessary. Caution: Some gcc
Expand Down Expand Up @@ -160,8 +160,9 @@ USE_ZLIB = 1
# The name of the bzip2 library, and whether to use it. The library is only
# needed to read and write bzip2 compressed parts of zip files with cpio.
#
#LIBBZ2 = -Wl,-Bstatic -lbz2 -Wl,-Bdynamic
LIBBZ2 = -Wl,-Bstatic -lbz2
USE_BZLIB = 0
USE_BZLIB = 1

#
# Compiler and linker flags. HOSTCC is for cross compiling.
Expand Down

0 comments on commit 9367a69

Please sign in to comment.