From a08b23246a2cab91b20850320cbea03c35593537 Mon Sep 17 00:00:00 2001 From: wolf Date: Fri, 15 Aug 2003 16:29:21 +0000 Subject: [PATCH] Have the original perl script just call the C++ executable now. git-svn-id: https://svn.dealii.org/trunk@7932 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/common/scripts/make_dependencies.pl.in | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 deal.II/common/scripts/make_dependencies.pl.in diff --git a/deal.II/common/scripts/make_dependencies.pl.in b/deal.II/common/scripts/make_dependencies.pl.in new file mode 100644 index 0000000000..142223040a --- /dev/null +++ b/deal.II/common/scripts/make_dependencies.pl.in @@ -0,0 +1,11 @@ +# $Id$ + +# this used to be a whole perl script, but it has been superceded by a +# program written in C++ since it was too slow. if someone is still +# using the perl script, simply forward all actions to the C++ +# executable +# +# since the perl script is not usually called from the directory which +# it is in, we need to have the path to the C++ executable. Autoconf +# does this for us upon configuration time. +print `@DEAL2_DIR@/common/scripts/make_dependencies @ARGV` -- 2.39.5