From f5fa2ff2d8bb7b52ff20a4506bbec8d634fa5ef2 Mon Sep 17 00:00:00 2001 From: steve Date: Sun, 4 Jul 1999 21:16:07 +0000 Subject: Fix build for ELF. --- korean/pine/files/Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/korean/pine/files/Makefile b/korean/pine/files/Makefile index 2874cc1f71e..eed2de22fbc 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 -- cgit