diff options
author | Steve Price <steve@FreeBSD.org> | 1999-07-05 05:16:07 +0800 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-07-05 05:16:07 +0800 |
commit | d9d156e61da5e9223ca4794eb9ec7f68e5dc21dd (patch) | |
tree | 247640fdcb462e6b2b5214f612971e32f43902be /korean | |
parent | a1ab04c595506ab27ba5727a6811c32dfb4e98c9 (diff) | |
download | freebsd-ports-gnome-d9d156e61da5e9223ca4794eb9ec7f68e5dc21dd.tar.gz freebsd-ports-gnome-d9d156e61da5e9223ca4794eb9ec7f68e5dc21dd.tar.zst freebsd-ports-gnome-d9d156e61da5e9223ca4794eb9ec7f68e5dc21dd.zip |
Fix build for ELF.
Diffstat (limited to 'korean')
-rw-r--r-- | korean/pine/files/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/korean/pine/files/Makefile b/korean/pine/files/Makefile index 2874cc1f71e7..eed2de22fbc4 100644 --- a/korean/pine/files/Makefile +++ b/korean/pine/files/Makefile @@ -1,7 +1,14 @@ +.if ${PORTOBJFORMAT} == "elf" +SHLIB= libpico.so.1 +.else +SHLIB= libpico.so.1.3 +.endif + all: ./build bsf install: - install -c -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} bin/libpico.so.1.3 ${PREFIX}/lib/libpico.so.1.3 + install -c -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} pico/${SHLIB} ${PREFIX}/lib + ln -sf ${SHLIB} ${PREFIX}/lib/libpico.so /sbin/ldconfig -m ${PREFIX}/lib install -c -s -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} bin/pico ${PREFIX}/bin/pico install -c -s -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} bin/pilot ${PREFIX}/bin/pilot |