I don't see this as a high priority compared to getting 2.4.3 out the door, but it
is useful to do -- so I'm placing it on "low priority" status and postponing it.
Any takers?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The problem is some missing references to $(DESTDIR) in
Makefile.PL. I will attach a patch. This doesn't appear to
be a complete solution to getting a clean RPM, but it's a start.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=20200
I don't see this as a high priority compared to getting 2.4.3 out the door, but it
is useful to do -- so I'm placing it on "low priority" status and postponing it.
Any takers?
Logged In: YES
user_id=263476
The problem is some missing references to $(DESTDIR) in
Makefile.PL. I will attach a patch. This doesn't appear to
be a complete solution to getting a clean RPM, but it's a start.
Logged In: YES
user_id=263476
--- PDL-2.4.2/Makefile.PL.orig 2006-05-30
18:29:12.000000000 -0700
+++ PDL-2.4.2/Makefile.PL 2006-05-30
18:30:31.000000000 -0700
@@ -431,15 +431,15 @@
doc_site_install ::
@echo "doc_site_install: Building PDL documentation
database ..."
- @$(PERL) -Mblib Doc/scantree.pl $(INSTALLSITEARCH)
+ @$(PERL) -Mblib Doc/scantree.pl
$(DESTDIR)$(INSTALLSITEARCH)
%HTML% @echo "doc_site_install: Building PDL documentation
web pages ..."
-%HTML% @$(PERL) Doc/mkhtmldoc.pl $(INSTALLSITEARCH)/PDL
+%HTML% @$(PERL) Doc/mkhtmldoc.pl
$(DESTDIR)$(INSTALLSITEARCH)/PDL
doc_perl_install ::
@echo "doc_perl_install: Building PDL documentation
database ..."
- @$(PERL) -Mblib Doc/scantree.pl $(INSTALLARCHLIB)
+ @$(PERL) -Mblib Doc/scantree.pl
$(DESTDIR)$(INSTALLARCHLIB)
%HTML% @echo "doc_perl_install: Building PDL documentation
web pages ..."
-%HTML% @$(PERL) Doc/mkhtmldoc.pl $(INSTALLARCHLIB)/PDL
+%HTML% @$(PERL) Doc/mkhtmldoc.pl
$(DESTDIR)$(INSTALLARCHLIB)/PDL