From: wolf Date: Fri, 15 Aug 2003 16:29:21 +0000 (+0000) Subject: Have the original perl script just call the C++ executable now. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a08b23246a2cab91b20850320cbea03c35593537;p=dealii-svn.git 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 --- 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`