You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							38 lines
						
					
					
						
							1.7 KiB
						
					
					
				
			
		
		
	
	
							38 lines
						
					
					
						
							1.7 KiB
						
					
					
				# --- SDE-COPYRIGHT-NOTE-BEGIN --- | 
						|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. | 
						|
# | 
						|
# Filename: package/.../gdbm/gdbm-1.8.3-libtool-mode-install.patch | 
						|
# Copyright (C) 2010 The OpenSDE Project | 
						|
# | 
						|
# More information can be found in the files COPYING and README. | 
						|
# | 
						|
# This patch file is dual-licensed. It is available under the license the | 
						|
# patched project is licensed under, as long as it is an OpenSource license | 
						|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms | 
						|
# of the GNU General Public License as published by the Free Software | 
						|
# Foundation; either version 2 of the License, or (at your option) any later | 
						|
# version. | 
						|
# --- SDE-COPYRIGHT-NOTE-END --- | 
						|
 | 
						|
Description: Fix install targets by explicitely using $(LIBTOOL) --mode=install | 
						|
 | 
						|
--- gdbm-1.8.3/Makefile.in.orig	2010-10-05 15:22:03.808001191 +0200 | 
						|
+++ gdbm-1.8.3/Makefile.in	2010-10-05 16:25:31.876001308 +0200 | 
						|
@@ -130,7 +130,7 @@ | 
						|
 	$(srcdir)/mkinstalldirs $(INSTALL_ROOT)$(libdir) \ | 
						|
 		$(INSTALL_ROOT)$(includedir) $(INSTALL_ROOT)$(man3dir) \ | 
						|
 		$(INSTALL_ROOT)$(infodir) | 
						|
-	$(LIBTOOL) $(INSTALL) -c libgdbm.la $(INSTALL_ROOT)$(libdir)/libgdbm.la | 
						|
+	$(LIBTOOL) --mode=install $(INSTALL) -c libgdbm.la $(INSTALL_ROOT)$(libdir)/libgdbm.la | 
						|
 	$(INSTALL_DATA) -o $(BINOWN) -g $(BINGRP) gdbm.h \ | 
						|
 		$(INSTALL_ROOT)$(includedir)/gdbm.h | 
						|
 	$(INSTALL_DATA) -o $(BINOWN) -g $(BINGRP) $(srcdir)/gdbm.3 \ | 
						|
@@ -141,7 +141,7 @@ | 
						|
 install-compat: | 
						|
 	$(srcdir)/mkinstalldirs $(INSTALL_ROOT)$(libdir) \ | 
						|
 		$(INSTALL_ROOT)$(includedir) | 
						|
-	$(LIBTOOL) $(INSTALL) -c libgdbm_compat.la \ | 
						|
+	$(LIBTOOL) --mode=install $(INSTALL) -c libgdbm_compat.la \ | 
						|
 		$(INSTALL_ROOT)$(libdir)/libgdbm_compat.la | 
						|
 	$(INSTALL_DATA) -o $(BINOWN) -g $(BINGRP) $(srcdir)/dbm.h \ | 
						|
 		$(INSTALL_ROOT)$(includedir)/dbm.h
 | 
						|
 |