rpmprune is no longer managed as a *.PL file.
authorrjray <devnull@localhost>
Wed, 16 Aug 2000 09:31:04 +0000 (09:31 +0000)
committerrjray <devnull@localhost>
Wed, 16 Aug 2000 09:31:04 +0000 (09:31 +0000)
CVS patchset: 4066
CVS date: 2000/08/16 09:31:04

Perl-RPM/MANIFEST
Perl-RPM/Makefile.PL

index f4a83fa..c12a984 100644 (file)
@@ -20,4 +20,4 @@ t/01_database.t
 t/02_headers.t
 t/03_errors.t
 t/04_utils.t
-utils/rpmprune.PL      Sample script
+utils/rpmprune         Sample script
index a49ac30..ac94185 100644 (file)
@@ -17,18 +17,16 @@ for (@OBJECT)
 $OBJECT = join(' ', @OBJECT);
 
 %PM = map { ($from = $_) =~ s/xs$/pm/;
-            ($from, "\$(INST_LIBDIR)/$from"); } (sort keys %XS);
-$PM{q(RPM/Error.pm)} = '$(INST_LIBDIR)/RPM/Error.pm';
+            ($from, "\$(INST_LIBDIR)/$from"); } (keys %XS);
 
 @SAMPLES = qw(utils/rpmprune);
-%PL_SCRIPTS = map { sprintf("%s.PL", $_) => "$_" } @SAMPLES;
 
 # This shouldn't be necessary, I don't think, but for now it is
 unlink 'RPM/typemap';
 symlink '../typemap', 'RPM/typemap';
 
 # Cruft that MakeMaker wouldn't inherently know about
-$CLEAN = join(' ', values %XS) . " $OBJECT @SAMPLES";
+$CLEAN = join(' ', values %XS) . " $OBJECT";
 $CLEAN .= ' pod2html-* */pod2html-* *.html */*.html RPM/typemap';
 
 #
@@ -73,7 +71,6 @@ WriteMakefile(
               DEFINE       => '',
               PM           => \%PM,
               XS           => \%XS,
-              PL_FILES     => \%PL_SCRIPTS,
               EXE_FILES    => [ @SAMPLES ],
               OBJECT       => $OBJECT,
               INC          => "-I$rpm_libdir",