aboutsummaryrefslogtreecommitdiff
path: root/hello
diff options
context:
space:
mode:
Diffstat (limited to 'hello')
-rw-r--r--hello/configure.ac2
-rwxr-xr-xhello/prepare-svn.sh36
2 files changed, 1 insertions, 37 deletions
diff --git a/hello/configure.ac b/hello/configure.ac
index 427e3a7..da37a34 100644
--- a/hello/configure.ac
+++ b/hello/configure.ac
@@ -10,7 +10,7 @@ define([THE_PACKAGE_AUTHOR], [moocow@ling.uni-potsdam.de])
AC_INIT(THE_PACKAGE_NAME, THE_PACKAGE_VERSION, THE_PACKAGE_AUTHOR)
##-- Additional m4 macros
-AC_CONFIG_MACRO_DIR(m4)
+AC_CONFIG_MACRO_DIR(common/m4)
##-- source & aux
AC_CONFIG_AUX_DIR(.)
diff --git a/hello/prepare-svn.sh b/hello/prepare-svn.sh
deleted file mode 100755
index 58830ae..0000000
--- a/hello/prepare-svn.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh
-
-USAGE="$0 {copy|link} [COMMON_SRC=../common] [COMMON_DST=./common]"
-
-if test -n "$1"; then
- case "$1" in
- copy)
- CP="cp -a";
- ;;
- link)
- CP="ln -s";
- ;;
- *)
- echo "Usage: $USAGE"
- exit 1;
- ;;
- esac
-else
- CP="ln -s"
-fi
-
-if test -n "$2"; then
- COMMON_SRC="$2";
-else
- COMMON_SRC="../common";
-fi
-
-if test -n "$3"; then
- COMMON_DST="$3";
-else
- COMMON_DST="./common";
-fi
-
-##-- copy or link in common dir
-rm -rf "$COMMON_DST";
-$CP "$COMMON_SRC" "$COMMON_DST";