summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorSebastian Dransfeld <sd@tango.flipp.net>2007-03-25 08:46:57 +0000
committerSebastian Dransfeld <sd@tango.flipp.net>2007-03-25 08:46:57 +0000
commit5b8a7cb937d9a4b790f5a10f5145fe9750f527fb (patch)
tree1bff0064abd7d2dd827b196e223026ef0ff54f70 /m4
parent25748897e0aab41a065433598034ad23f94d8f38 (diff)
downloadeet-5b8a7cb937d9a4b790f5a10f5145fe9750f527fb.tar.gz
Remove unused file.
SVN revision: 29091
Diffstat (limited to 'm4')
-rw-r--r--m4/ac_expand_dir.m414
1 files changed, 0 insertions, 14 deletions
diff --git a/m4/ac_expand_dir.m4 b/m4/ac_expand_dir.m4
deleted file mode 100644
index b5599a0..0000000
--- a/m4/ac_expand_dir.m4
+++ /dev/null
@@ -1,14 +0,0 @@
-dnl AC_EXPAND_DIR(VARNAME, DIR)
-dnl expands occurrences of ${prefix} and ${exec_prefix} in the given DIR,
-dnl and assigns the resulting string to VARNAME
-dnl example: AC_DEFINE_DIR(DATADIR, "$datadir")
-dnl by Alexandre Oliva <oliva@dcc.unicamp.br>
-AC_DEFUN([AC_EXPAND_DIR], [
- $1=$2
- $1=`(
- test "x$prefix" = xNONE && prefix="$ac_default_prefix"
- test "x$exec_prefix" = xNONE && exec_prefix="${prefix}"
- eval echo \""[$]$1"\"
- )`
-])
-