mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
55f7f0b201
PR: 13592 Submitted by: IWASHITA Yoji <shuna@pop16.odn.ne.jp>
44 lines
1.6 KiB
Plaintext
44 lines
1.6 KiB
Plaintext
*** src/Makefile.in.orig Mon Jul 19 21:28:29 1999
|
|
--- src/Makefile.in Fri Sep 3 04:26:09 1999
|
|
***************
|
|
*** 36,42 ****
|
|
exec_prefix = @exec_prefix@
|
|
install_lib_dir = @libdir@
|
|
install_include_dir = @includedir@
|
|
! install_doc_dir = $(prefix)/doc/slang/@slang_version@
|
|
DOC_FILES = ../changes.txt ../COPY* ../doc/slangdoc.html ../doc/text/*.txt
|
|
#---------------------------------------------------------------------------
|
|
# Misc commands (safe to leave these untouched)
|
|
--- 36,42 ----
|
|
exec_prefix = @exec_prefix@
|
|
install_lib_dir = @libdir@
|
|
install_include_dir = @includedir@
|
|
! install_doc_dir = $(prefix)/share/doc/slang
|
|
DOC_FILES = ../changes.txt ../COPY* ../doc/slangdoc.html ../doc/text/*.txt
|
|
#---------------------------------------------------------------------------
|
|
# Misc commands (safe to leave these untouched)
|
|
***************
|
|
*** 74,80 ****
|
|
--- 74,84 ----
|
|
|
|
ELFLIB = lib$(THIS_LIB).so#
|
|
ELFLIB_MAJOR = $(ELFLIB).$(ELF_MAJOR_VERSION)#
|
|
+ .if ( ${PORTOBJFORMAT} == "aout" )
|
|
ELFLIB_MAJOR_MINOR = $(ELFLIB).$(ELF_MAJOR_VERSION).$(ELF_MINOR_VERSION)#
|
|
+ .else
|
|
+ ELFLIB_MAJOR_MINOR = $(ELFLIB).$(ELF_MAJOR_VERSION)#
|
|
+ .endif
|
|
|
|
ELFDIR_ELF_LIB = $(ELFDIR)/$(ELFLIB_MAJOR_MINOR)#
|
|
|
|
***************
|
|
*** 106,111 ****
|
|
--- 110,116 ----
|
|
$(ELFDIR_ELF_LIB): $(ELFDIR) $(CONFIG_H) $(ELFOBJS)
|
|
-$(RM) $(ELFDIR_ELF_LIB)
|
|
cd $(ELFDIR); $(ELF_LINK_CMD) -o $(ELFLIB_MAJOR_MINOR) $(OFILES) $(ELF_DEP_LIBS)
|
|
+ cd $(ELFDIR); strip $(ELFLIB_MAJOR_MINOR)
|
|
cd $(ELFDIR); $(RM) $(ELFLIB); $(LN) $(ELFLIB_MAJOR_MINOR) $(ELFLIB)
|
|
@echo ""
|
|
@echo $(ELFLIB_MAJOR_MINOR) created in $(ELFDIR).
|