diff options
author | Mark Brand <mabrand@mabrand.nl> | 2010-09-11 13:55:36 (GMT) |
---|---|---|
committer | Mark Brand <mabrand@mabrand.nl> | 2010-09-11 13:55:36 (GMT) |
commit | 82980049258c1d21b3d318a449bcdf00d076a1ea (patch) | |
tree | f9afa1ae3b3fd19df3e7c29b89c8eedf46a41970 /src/freetds.mk | |
parent | b55898dfd7f0a185df0e729a264340bb3cc3a72d (diff) | |
download | mxe-82980049258c1d21b3d318a449bcdf00d076a1ea.zip mxe-82980049258c1d21b3d318a449bcdf00d076a1ea.tar.gz mxe-82980049258c1d21b3d318a449bcdf00d076a1ea.tar.bz2 |
fixes for building package freetds (by Tony Theodore)
Stop configure running twice (the first is called by autogen.sh).
Use the $(LIBTOOLIZE) replacement.
Diffstat (limited to 'src/freetds.mk')
-rw-r--r-- | src/freetds.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/freetds.mk b/src/freetds.mk index 54d607f..647e5fa 100644 --- a/src/freetds.mk +++ b/src/freetds.mk @@ -21,8 +21,8 @@ define $(PKG)_UPDATE endef define $(PKG)_BUILD - cd '$(1)' && ./autogen.sh - cd '$(1)' && libtoolize + cd '$(1)' && NOCONFIGURE=true ./autogen.sh + cd '$(1)' && $(LIBTOOLIZE) # wine confuses the cross-compiling detection, so set it explicitly $(SED) -i 's,cross_compiling=no,cross_compiling=yes,' '$(1)/configure' |