]> git.saurik.com Git - bison.git/commitdiff
tests: fix VPATH issue
authorAkim Demaille <akim@lrde.epita.fr>
Fri, 20 Jul 2012 16:18:47 +0000 (18:18 +0200)
committerAkim Demaille <akim@lrde.epita.fr>
Fri, 20 Jul 2012 16:23:44 +0000 (18:23 +0200)
* examples/test: With an absolute VPATH build, "../" is incorrect.

examples/test

index 7bf6dab69cf4daa7e7b518bd622f6ac024e5027c..d320a2887b4e1803fa727d17d9c2415af30ac10e 100755 (executable)
@@ -74,6 +74,9 @@ run ()
 }
 
 # We have cd'd one level deeper.
-. "../$1"
+case $1 in
+  /*) . "$1";;
+  *)  . "../$1";;
+esac
 
 $exit