aboutsummaryrefslogtreecommitdiff
path: root/hello
diff options
context:
space:
mode:
authorBryan Jurish <mukau@users.sourceforge.net>2009-03-07 20:58:22 +0000
committerBryan Jurish <mukau@users.sourceforge.net>2009-03-07 20:58:22 +0000
commite7bd2d1954b8e9ec7b9d5e3b1dae30ef97d69032 (patch)
treebb70cd86f0ad1263b83d19e688815699006efaab /hello
parente9372d1375b01e8aa47bc6e848ddbbf139fe9cb8 (diff)
+ eliminated build-time dependence on svn:special symlinks
svn path=/trunk/externals/moocow/; revision=10845
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";