[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r9761 - /libdfp/trunk/Makefile.in



Author: ryanarn
Date: Fri Jan 29 10:32:56 2010
New Revision: 9761

Log:
2010-01-29  Ryan S. Arnold  <rsa@xxxxxxxxxx>

	* Makefile.in: Fixed libdir=@prefix@/lib to libdir=@libdir@ and
	includedir=@prefix@/include to includedir=@includedir@.  This will
	allow configure override with --libdir= and --includedir=
	respectively.  This was preventing installation into /<foo>/lib64.
	Fix header install so that dfp/README isn't installed with the header
	files.

Modified:
    libdfp/trunk/Makefile.in

Modified: libdfp/trunk/Makefile.in
==============================================================================
--- libdfp/trunk/Makefile.in (original)
+++ libdfp/trunk/Makefile.in Fri Jan 29 10:32:56 2010
@@ -6,8 +6,8 @@
 top_builddir = .
 
 prefix = @prefix@
-libdir := @exec_prefix@/lib
-includedir := @prefix@/include
+libdir := @libdir@
+includedir := @includedir@
 
 dfp_name = @PACKAGE_NAME@
 dfp_version = @PACKAGE_VERSION@
@@ -304,13 +304,13 @@
 	(cd $(install_root)/$(libdir);ln -f -s ./$(SHARED_VERSION_LIBRARY) $(SHARED_LIBRARY))
 	$(INSTALL) -d $(install_root)/$(includedir)
 	$(INSTALL) -d $(install_root)/$(includedir)/dfp
-	$(INSTALL) -t $(install_root)/$(includedir)/dfp $(top_srcdir)/dfp/*
+	$(INSTALL) -t $(install_root)/$(includedir)/dfp $(top_srcdir)/dfp/*.h
 .PHONY: install
 
 install-headers:
 	$(INSTALL) -d $(install_root)/$(includedir)
 	$(INSTALL) -d $(install_root)/$(includedir)/dfp
-	$(INSTALL) -t $(install_root)/$(includedir)/dfp $(top_srcdir)/dfp/*
+	$(INSTALL) -t $(install_root)/$(includedir)/dfp $(top_srcdir)/dfp/*.h
 .PHONY: install-headers
 
 # Clean out the existing .SUFFIXES setting.