From: Graham B. <gb...@us...> - 2003-06-09 12:29:45
|
Update of /cvsroot/perl-ldap/ldap In directory sc8-pr-cvs1:/tmp/cvs-serv30175 Modified Files: MANIFEST Makefile.PL Log Message: Depend in MakeMaker to fixup the #! line of installed scripts Index: MANIFEST =================================================================== RCS file: /cvsroot/perl-ldap/ldap/MANIFEST,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- MANIFEST 9 Jun 2003 12:04:26 -0000 1.25 +++ MANIFEST 9 Jun 2003 12:29:40 -0000 1.26 @@ -7,9 +7,9 @@ README RELEASE_NOTES TODO -bin/ldapdelete.PL -bin/ldapmodrdn.PL -bin/ldapsearch.PL +bin/ldapdelete +bin/ldapmodrdn +bin/ldapsearch contrib/README contrib/dot.tklkup contrib/isMember.pl Index: Makefile.PL =================================================================== RCS file: /cvsroot/perl-ldap/ldap/Makefile.PL,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- Makefile.PL 9 Mar 2003 11:00:50 -0000 1.11 +++ Makefile.PL 9 Jun 2003 12:29:41 -0000 1.12 @@ -85,8 +85,6 @@ #--- Write the Makefile --- -my %PL_FILES = map { ($a = $_) =~ s/\.PL// ? ($_,$a) : () } glob('bin/*.PL'); - my @ppd; if ($] >= 5.00503) { @@ -99,8 +97,7 @@ WriteMakefile( VERSION_FROM => $VERSION_FROM, NAME => $DISTNAME, - EXE_FILES => $opt_s ? [ values %PL_FILES ] : [], - PL_FILES => \%PL_FILES, + EXE_FILES => $opt_s ? [ grep -f, glob('bin/*') ] : [], clean => {FILES => 'temp'}, PREREQ_PM => { 'Convert::ASN1' => 0.07 }, @ppd, |