[Expat-bugs] [ expat-Bugs-1177957 ] Makefile.in doesn't install expat_external.h on SGI

SourceForge.net noreply at sourceforge.net
Wed Apr 6 19:52:58 CEST 2005


Bugs item #1177957, was opened at 2005-04-06 13:40
Message generated for change (Comment added) made by kwaclaw
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1177957&group_id=10127

Category: Build control
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Greg Stein (gstein)
Summary: Makefile.in doesn't install expat_external.h on SGI

Initial Comment:
(Submitted by Mark Zieg, mark at zieg.com)

The conftools/install-sh script provided clearly
specifies that it can only install one file at a time.
 However, there are TWO headers listed in APIHEADER;
ergo, the second one gets dropped.

The following patch fixes Makefile.in:

--- Makefile.in 2004-05-07 16:00:48.000000000 -0400
+++ /home/ziegm/save/Makefile.in        2005-04-06
13:33:57.537788960 -0400
@@ -41,7 +41,8 @@
 mkinstalldirs = $(SHELL)
$(top_srcdir)/conftools/mkinstalldirs

 MANFILE = $(srcdir)/doc/xmlwf.1
-APIHEADER = $(srcdir)/lib/expat.h
$(srcdir)/lib/expat_external.h
+APIHEADER1 = $(srcdir)/lib/expat.h
+APIHEADER2 = $(srcdir)/lib/expat_external.h
 LIBRARY = libexpat.la


@@ -80,7 +81,8 @@
 installlib: $(LIBRARY) $(APIHEADER)
        $(mkinstalldirs) $(libdir) $(includedir)
        $(LIBTOOL) --mode=install $(INSTALL) $(LIBRARY)
$(libdir)/$(LIBRARY)
-       $(INSTALL_DATA) $(APIHEADER) $(includedir)
+       $(INSTALL_DATA) $(APIHEADER1) $(includedir)
+       $(INSTALL_DATA) $(APIHEADER2) $(includedir)

 uninstall: uninstalllib
        $(LIBTOOL) --mode=uninstall rm -f $(bindir)/xmlwf



----------------------------------------------------------------------

>Comment By: Karl Waclawek (kwaclaw)
Date: 2005-04-06 13:52

Message:
Logged In: YES 
user_id=290026

I think this has been resolved in CVS.
Please check and confirm, so that we can close this issue.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=110127&aid=1177957&group_id=10127


More information about the Expat-bugs mailing list