Skip to content

Commit

Permalink
Omit Apache2 files for now
Browse files Browse the repository at this point in the history
  • Loading branch information
rjray committed Jan 30, 2003
1 parent 9629a4b commit d529596
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile.PL
@@ -1,6 +1,6 @@
###############################################################################
#
# $Id: Makefile.PL,v 1.29 2003/01/30 08:48:06 rjray Exp $
# $Id: Makefile.PL,v 1.30 2003/01/30 09:17:06 rjray Exp $
#
# This is the MakeMaker skeleton for the RPC-XML extension. Besides the usual
# tricks, this has to add rules to make the *.xpl files from *.code in the
Expand All @@ -24,6 +24,9 @@ $CLEAN .= File::Spec->catfile(qw(methods *.xpl));

find(sub { push(@PM_FILES, $File::Find::name) if (-f $_ and /\.pm$/) }, 'lib');

# Exclude Apache2 stuff until it's ready for deployment
@PM_FILES = grep(! /Apache2/, @PM_FILES);

%PM_FILES = map { ($temp = $_) =~ s|^lib|\$\(INST_LIB\)|; $_ => $temp }
@PM_FILES;
# Handle the method code in "methods" specially:
Expand Down

0 comments on commit d529596

Please sign in to comment.