Mercurial > sdl-ios-xcode
changeset 723:1e8865a3e127
Files now copied to build directory instead of source directory while configuring
author | Patrice Mandin <patmandin@gmail.com> |
---|---|
date | Wed, 24 Sep 2003 21:45:27 +0000 |
parents | 90dfd3f5782c |
children | 6b3dfe0198bb |
files | acinclude.m4 configure.in |
diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/acinclude.m4 Sun Sep 21 19:25:45 2003 +0000 +++ b/acinclude.m4 Wed Sep 24 21:45:27 2003 +0000 @@ -4,9 +4,13 @@ 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
--- a/configure.in Sun Sep 21 19:25:45 2003 +0000 +++ b/configure.in Wed Sep 24 21:45:27 2003 +0000 @@ -2646,6 +2646,7 @@ CFLAGS="$CFLAGS -I\$(top_srcdir)/src/timer" CFLAGS="$CFLAGS -I\$(top_srcdir)/src/endian" CFLAGS="$CFLAGS -I\$(top_srcdir)/src/file" +CFLAGS="$CFLAGS -I\$(top_builddir)/src/thread" CXXFLAGS="$CFLAGS"