1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/devel/splint/files/patch-aa
Steve Price 4c338b08a1 Update to version 2.4b.
PR:		7113
Submitted by:	maintainer
1998-07-03 23:36:42 +00:00

57 lines
1.7 KiB
Plaintext

*** Makefile.in.orig Sun Apr 19 03:06:51 1998
--- Makefile.in Sat Jun 27 23:05:50 1998
***************
*** 40,49 ****
###
### directory for lclint libraries
! LIBDIR = @installdir@/lib
### directory for lclint standard imports
! IMPORTSDIR = @installdir@/imports
### directory for lclint binary
INSTALLDIR = @installdir@/bin
--- 40,49 ----
###
### directory for lclint libraries
! LIBDIR = @installdir@/share/lclint-2.4b/lib
### directory for lclint standard imports
! IMPORTSDIR = @installdir@/share/lclint-2.4b/imports
### directory for lclint binary
INSTALLDIR = @installdir@/bin
***************
*** 231,244 ****
dolibraries:
@echo '// Installing libraries in '$(LIBDIR)
@echo " (This will complain if the directory already exists, don't worry about it.)"
! -mkdir $(LIBDIR)
$(CP) $(LCLINTLIB)/* $(LIBDIR)
@echo '// Installed libraries.'
doimports:
@echo '// Installing imports in '$(IMPORTSDIR)
@echo " (This will complain if the directory already exists, don't worry about it.)"
! -mkdir $(IMPORTSDIR)
$(CP) $(LCLINTIMPORTS)/* $(IMPORTSDIR)
@echo '// Installed imports.'
--- 231,244 ----
dolibraries:
@echo '// Installing libraries in '$(LIBDIR)
@echo " (This will complain if the directory already exists, don't worry about it.)"
! -mkdir -p $(LIBDIR)
$(CP) $(LCLINTLIB)/* $(LIBDIR)
@echo '// Installed libraries.'
doimports:
@echo '// Installing imports in '$(IMPORTSDIR)
@echo " (This will complain if the directory already exists, don't worry about it.)"
! -mkdir -p $(IMPORTSDIR)
$(CP) $(LCLINTIMPORTS)/* $(IMPORTSDIR)
@echo '// Installed imports.'