[Expat-checkins] CVS: expat/lib Makefile.in,1.14,1.15

Fred L. Drake fdrake@users.sourceforge.net
Wed, 25 Jul 2001 08:13:40 -0700


Update of /cvsroot/expat/expat/lib
In directory usw-pr-cvs1:/tmp/cvs-serv1180/lib

Modified Files:
	Makefile.in 
Log Message:

Remove the extra DESTDIR variable.


Index: Makefile.in
===================================================================
RCS file: /cvsroot/expat/expat/lib/Makefile.in,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** Makefile.in	2001/07/25 03:05:22	1.14
--- Makefile.in	2001/07/25 15:13:38	1.15
***************
*** 43,48 ****
  subdir = lib
  
- DESTDIR =
- 
  top_builddir = ..
  
--- 43,46 ----
***************
*** 138,148 ****
  
  install: $(LIBRARY) $(APIHEADER)
! 	$(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
! 	$(LIBTOOL)  --mode=install $(INSTALL) $(LIBRARY) $(DESTDIR)$(libdir)/$(LIBRARY)
! 	$(INSTALL_DATA) $(APIHEADER) $(DESTDIR)$(includedir)
  
  uninstall:
! 	$(LIBTOOL)  --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(LIBRARY);
! 	rm -f $(DESTDIR)$(libdir)/$(APIHEADER)
  
  $(LIBRARY): $(LTOBJECTS)
--- 136,146 ----
  
  install: $(LIBRARY) $(APIHEADER)
! 	$(mkinstalldirs) $(libdir) $(includedir)
! 	$(LIBTOOL) --mode=install $(INSTALL) $(LIBRARY) $(libdir)/$(LIBRARY)
! 	$(INSTALL_DATA) $(APIHEADER) $(includedir)
  
  uninstall:
! 	$(LIBTOOL) --mode=uninstall rm -f $(libdir)/$(LIBRARY);
! 	rm -f $(libdir)/$(APIHEADER)
  
  $(LIBRARY): $(LTOBJECTS)