diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-04-29 22:56:02 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-04-29 22:56:02 +0000 |
commit | 28d9bfb21210e90251556c888367330d5e9645ab (patch) | |
tree | 874cd4e091a27fa2f919ffe44ebe181aa8281358 /gnu | |
parent | c25c5c3c87d89b68324dc98b7c8aaabc750c7cec (diff) |
Import of stock perl 5.8.5
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/perl/config.over | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gnu/usr.bin/perl/config.over b/gnu/usr.bin/perl/config.over new file mode 100644 index 00000000000..ab5923b758c --- /dev/null +++ b/gnu/usr.bin/perl/config.over @@ -0,0 +1,45 @@ +# +# Override default paths when building in the OpenBSD src tree +# + +# We use a different architecture name than the default +archname="`uname -m`-${osname}" +myarchname="$archname" + +# Use correct paths for a distribution +prefix='/usr' +prefixexp='/usr' + +archlib="/usr/lib/perl5/${archname}/${version}" +archlibexp="${archlib}" +installarchlib="${archlib}" + +privlib='/usr/lib/perl5' +privlibexp="${privlib}" +installprivlib="${privlib}" + +sitearch="/usr/lib/perl5/site_perl/${archname}" +sitearchexp="${sitearch}" +installsitearch="${sitearch}" + +sitelib='/usr/lib/perl5/site_perl' +sitelibexp="${sitelib}" +installsitelib="${sitelib}" + +# We install the man oages ourselves until installman gets smarter +man1dir='' +man1direxp='' +installman1dir='' +man1ext='0' +man3dir='' +man3direxp='' +installman3dir='' +man3ext='0' + +# Never hardcode developer info into a distribution +cf_by='root' +cf_email='root@localhost' +perladmin='root@localhost' +mydomain='' +myhostname='' +myuname='openbsd' |