Skip to content

Commit

Permalink
should use pure_install for not installing perllocal.pod to $Config{I…
Browse files Browse the repository at this point in the history
…NSTALLARCH}. It cause conflict of packages.
  • Loading branch information
walf443 committed Oct 9, 2009
1 parent c5f190b commit 3027fb7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion conf/debian/rules.MakeMaker.noxs
Expand Up @@ -37,7 +37,7 @@ install-stamp: build-stamp
dh_testroot dh_testroot
dh_clean -k dh_clean -k
# Add commands to install the package into $(TMP) here # Add commands to install the package into $(TMP) here
$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr $(MAKE) pure_install DESTDIR=$(TMP) PREFIX=/usr
[ ! -d $(TMP)/usr/lib/perl5 ] || \ [ ! -d $(TMP)/usr/lib/perl5 ] || \
rmdir --ignore-fail-on-non-empty --parents --verbose \ rmdir --ignore-fail-on-non-empty --parents --verbose \
$(TMP)/usr/lib/perl5 $(TMP)/usr/lib/perl5
Expand Down
2 changes: 1 addition & 1 deletion conf/debian/rules.MakeMaker.xs
Expand Up @@ -46,7 +46,7 @@ install-stamp: build-stamp
dh_testroot dh_testroot
dh_clean -k dh_clean -k
# Add commands to install the package into $(TMP) # Add commands to install the package into $(TMP)
$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr $(MAKE) pure_install DESTDIR=$(TMP) PREFIX=/usr
[ ! -d $(TMP)/usr/share/perl5 ] || \ [ ! -d $(TMP)/usr/share/perl5 ] || \
rmdir --ignore-fail-on-non-empty --parents --verbose \ rmdir --ignore-fail-on-non-empty --parents --verbose \
$(TMP)/usr/share/perl5 $(TMP)/usr/share/perl5
Expand Down
2 changes: 1 addition & 1 deletion conf/debian/rules.Module-Build.noxs
Expand Up @@ -40,7 +40,7 @@ install-stamp: build-stamp
dh_testroot dh_testroot
dh_clean -k dh_clean -k
# Add commands to install the package into $(TMP) here # Add commands to install the package into $(TMP) here
$(PERL) Build install destdir=$(TMP) create_packlist=0 $(PERL) Build pure_install destdir=$(TMP) create_packlist=0
touch $@ touch $@


binary-arch: binary-arch:
Expand Down
2 changes: 1 addition & 1 deletion conf/debian/rules.Module-Build.xs
Expand Up @@ -46,7 +46,7 @@ install-stamp: build-stamp
dh_testroot dh_testroot
dh_clean -k dh_clean -k
# Add commands to install the package into $(TMP) here # Add commands to install the package into $(TMP) here
$(PERL) Build install destdir=$(TMP) create_packlist=0 $(PERL) Build pure_install destdir=$(TMP) create_packlist=0
touch $@ touch $@


# Build architecture-independent files here. # Build architecture-independent files here.
Expand Down

1 comment on commit 3027fb7

@dann
Copy link
Owner

@dann dann commented on 3027fb7 Oct 9, 2009

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

おぉ、すばらしす

Please sign in to comment.