Files now copied to build directory instead of source directory while configuring

This commit is contained in:
Patrice Mandin
2003-09-24 21:45:27 +00:00
parent c82baf190a
commit a71036cb2a
2 changed files with 7 additions and 2 deletions

View File

@@ -4,9 +4,13 @@ dnl Function to link an architecture specific file
dnl LINK_ARCH_SRC(source_dir, arch, source_file)
AC_DEFUN(COPY_ARCH_SRC,
[
echo "Copying $1/$2/$3 -> $1/$3"
old="$srcdir/$1/$2/$3"
new="$srcdir/$1/$3"
new="$1/$3"
if test ! -d $1; then
echo "Creating directory $1"
mkdir -p $1
fi
echo "Copying $old -> $new"
cat >$new <<__EOF__
/* WARNING: This file was automatically generated!
* Original: $old