From 051c8696f1cb32e97e0f6de2dd5f7d6d0270c802 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 15 Dec 2009 04:37:40 +0000 Subject: [PATCH] Use 'test -f' instead of 'test -e'. git-svn-id: https://svn.dealii.org/trunk@20248 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/reconfigure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/reconfigure b/deal.II/reconfigure index 59166b9f4a..988a356736 100755 --- a/deal.II/reconfigure +++ b/deal.II/reconfigure @@ -4,7 +4,7 @@ # # Rerun configure with the same options as last time. -if test -e config.log +if test -f config.log then perl -e 'while(<>) { if(s/^ *\$ *(.*)configure/$1configure/) { exec $_; } }' config.log else -- 2.39.5