From 4a40542bdd940f7b909aa24866e69b3a088253ac Mon Sep 17 00:00:00 2001 From: short <> Date: Wed, 19 Dec 2001 00:36:47 +0000 Subject: [PATCH] function mi: Also "Makefile.PL" is now considered a top_srcdir marker --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 36326aa..4cf2f83 100644 --- a/.bashrc +++ b/.bashrc @@ -93,7 +93,7 @@ function edall { done }; export -f edall function mi { ( - set -ex;cd "$1";while true;do test "$PWD" != "/";if [ -e configure.in ];then break;fi;cd ..;done;make install; + set -ex;cd "$1";while true;do test "$PWD" != "/";if [ -e configure.in -o -e Makefile.PL ];then break;fi;cd ..;done;make install; ); };export -f mi ulimit -c 0 -- 1.8.3.1