aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authornotin2007-08-20 17:41:02 +0000
committernotin2007-08-20 17:41:02 +0000
commite1b02cbf1c18e5ebc5087a8e1f40c9d8534f69a0 (patch)
treea60d660d3dcfbdb2ae31df9da3af18e5435cbc3e /configure
parent6a40221d531bbff9d87ab353a68ccc49b672d3f4 (diff)
Modification de l'initialisation des chemins de la librairie standard
pour imposer un ordre précis des répertoires (résout en partie le problème entre Init.Wf et Program.Wf.) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10081 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index ad2973d975..6d497e29ff 100755
--- a/configure
+++ b/configure
@@ -649,7 +649,7 @@ PRINTF=`which printf`
# Subdirectories of theories/ added in coq_config.ml
subdirs () {
- (cd $1; find * -type d ! -name .svn -exec $PRINTF "\"%s\";\n" {} \; | grep -v extraction/test | grep -v correctness >> "$mlconfig_file")
+ (cd $1; find * \( -name .svn -prune \) -o \( -type d -exec $PRINTF "\"%s\";\n" {} \; \) | grep -v extraction/test | grep -v correctness >> "$mlconfig_file")
}
echo "let theories_dirs = [" >> "$mlconfig_file"