aboutsummaryrefslogtreecommitdiff
path: root/dev/perl
diff options
context:
space:
mode:
authorrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-12-04 19:15:43 +0000
committerrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-12-04 19:15:43 +0000
commit14e8f74b61fd8e6d172af5e28408699c366837f4 (patch)
tree08ef0aded7a107f294e6e18d2f762d3b542610d4 /dev/perl
parentae8a94d2b5e2c9c82c24229228aa2f594acdb6f9 (diff)
downloadslackbuilds-14e8f74b61fd8e6d172af5e28408699c366837f4.tar.gz
slackbuilds-14e8f74b61fd8e6d172af5e28408699c366837f4.tar.bz2
perl modules: fix in packlist
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@789 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'dev/perl')
-rwxr-xr-xdev/perl/perl-crypt-ciphersaber/perl-crypt-ciphersaber.SlackBuild6
-rwxr-xr-xdev/perl/perl-dbd-mysql/perl-dbd-mysql.SlackBuild6
-rwxr-xr-xdev/perl/perl-digest-md5/perl-digest-md5.SlackBuild6
-rwxr-xr-xdev/perl/perl-module-build/perl-module-build.SlackBuild6
-rwxr-xr-xdev/perl/perl-test-warn/perl-test-warn.SlackBuild6
-rwxr-xr-xdev/perl/perl-tree-dag_node/perl-tree-dag_node.SlackBuild6
6 files changed, 24 insertions, 12 deletions
diff --git a/dev/perl/perl-crypt-ciphersaber/perl-crypt-ciphersaber.SlackBuild b/dev/perl/perl-crypt-ciphersaber/perl-crypt-ciphersaber.SlackBuild
index fd0a2ead..c8abe534 100755
--- a/dev/perl/perl-crypt-ciphersaber/perl-crypt-ciphersaber.SlackBuild
+++ b/dev/perl/perl-crypt-ciphersaber/perl-crypt-ciphersaber.SlackBuild
@@ -87,8 +87,10 @@ cd $TMP/package-$PACKAGE
# we need to fix .packlist
string="`echo $TMP/package-$PACKAGE | sed -e 's/\//\\\\\//g'`"
-find . -name .packlist -exec sed -e "s/^$string//g" {} \; > packlist
-find . -name .packlist -exec mv packlist {} \;
+for file in `find -name .packlist`; do
+ sed -e "s/^$string//g" $file > $file.tmp
+ mv $file.tmp $file
+done
mkdir install
diff --git a/dev/perl/perl-dbd-mysql/perl-dbd-mysql.SlackBuild b/dev/perl/perl-dbd-mysql/perl-dbd-mysql.SlackBuild
index dc12ce84..4f5c0559 100755
--- a/dev/perl/perl-dbd-mysql/perl-dbd-mysql.SlackBuild
+++ b/dev/perl/perl-dbd-mysql/perl-dbd-mysql.SlackBuild
@@ -87,8 +87,10 @@ cd $TMP/package-$PACKAGE
# we need to fix .packlist
string="`echo $TMP/package-$PACKAGE | sed -e 's/\//\\\\\//g'`"
-find . -name .packlist -exec sed -e "s/^$string//g" {} \; > packlist
-find . -name .packlist -exec mv packlist {} \;
+for file in `find -name .packlist`; do
+ sed -e "s/^$string//g" $file > $file.tmp
+ mv $file.tmp $file
+done
mkdir install
diff --git a/dev/perl/perl-digest-md5/perl-digest-md5.SlackBuild b/dev/perl/perl-digest-md5/perl-digest-md5.SlackBuild
index 95232c96..4b5c0222 100755
--- a/dev/perl/perl-digest-md5/perl-digest-md5.SlackBuild
+++ b/dev/perl/perl-digest-md5/perl-digest-md5.SlackBuild
@@ -87,8 +87,10 @@ cd $TMP/package-$PACKAGE
# we need to fix .packlist
string="`echo $TMP/package-$PACKAGE | sed -e 's/\//\\\\\//g'`"
-find . -name .packlist -exec sed -e "s/^$string//g" {} \; > packlist
-find . -name .packlist -exec mv packlist {} \;
+for file in `find -name .packlist`; do
+ sed -e "s/^$string//g" $file > $file.tmp
+ mv $file.tmp $file
+done
mkdir install
diff --git a/dev/perl/perl-module-build/perl-module-build.SlackBuild b/dev/perl/perl-module-build/perl-module-build.SlackBuild
index f0d7ce47..49587b38 100755
--- a/dev/perl/perl-module-build/perl-module-build.SlackBuild
+++ b/dev/perl/perl-module-build/perl-module-build.SlackBuild
@@ -87,8 +87,10 @@ cd $TMP/package-$PACKAGE
# we need to fix .packlist
string="`echo $TMP/package-$PACKAGE | sed -e 's/\//\\\\\//g'`"
-find . -name .packlist -exec sed -e "s/^$string//g" {} \; > packlist
-find . -name .packlist -exec mv packlist {} \;
+for file in `find -name .packlist`; do
+ sed -e "s/^$string//g" $file > $file.tmp
+ mv $file.tmp $file
+done
mkdir install
diff --git a/dev/perl/perl-test-warn/perl-test-warn.SlackBuild b/dev/perl/perl-test-warn/perl-test-warn.SlackBuild
index ba48b921..c1077295 100755
--- a/dev/perl/perl-test-warn/perl-test-warn.SlackBuild
+++ b/dev/perl/perl-test-warn/perl-test-warn.SlackBuild
@@ -87,8 +87,10 @@ cd $TMP/package-$PACKAGE
# we need to fix .packlist
string="`echo $TMP/package-$PACKAGE | sed -e 's/\//\\\\\//g'`"
-find . -name .packlist -exec sed -e "s/^$string//g" {} \; > packlist
-find . -name .packlist -exec mv packlist {} \;
+for file in `find -name .packlist`; do
+ sed -e "s/^$string//g" $file > $file.tmp
+ mv $file.tmp $file
+done
mkdir install
diff --git a/dev/perl/perl-tree-dag_node/perl-tree-dag_node.SlackBuild b/dev/perl/perl-tree-dag_node/perl-tree-dag_node.SlackBuild
index 023b906e..cec003e9 100755
--- a/dev/perl/perl-tree-dag_node/perl-tree-dag_node.SlackBuild
+++ b/dev/perl/perl-tree-dag_node/perl-tree-dag_node.SlackBuild
@@ -87,8 +87,10 @@ cd $TMP/package-$PACKAGE
# we need to fix .packlist
string="`echo $TMP/package-$PACKAGE | sed -e 's/\//\\\\\//g'`"
-find . -name .packlist -exec sed -e "s/^$string//g" {} \; > packlist
-find . -name .packlist -exec mv packlist {} \;
+for file in `find -name .packlist`; do
+ sed -e "s/^$string//g" $file > $file.tmp
+ mv $file.tmp $file
+done
mkdir install