# HG changeset patch # User Volker Grabsch # Date 1226199958 -3600 # Node ID 6337081fd7fa9dae256803336b4db768cba94932 # Parent df943f9448f77c732000b0edfe85fee26602fc15 bugfix in the build rules of packages 'gd' and 'libgeotiff' diff --git a/src/gd.mk b/src/gd.mk --- a/src/gd.mk +++ b/src/gd.mk @@ -16,9 +16,9 @@ endef define $(PKG)_BUILD - touch aclocal.m4 - touch config.hin - touch Makefile.in + touch '$(1)/aclocal.m4' + touch '$(1)/config.hin' + touch '$(1)/Makefile.in' $(SED) 's,-I@includedir@,-I@includedir@ -DNONDLL,' -i '$(1)/config/gdlib-config.in' $(SED) 's,-lX11 ,,g' -i '$(1)/configure' cd '$(1)' && ./configure \ diff --git a/src/libgeotiff.mk b/src/libgeotiff.mk --- a/src/libgeotiff.mk +++ b/src/libgeotiff.mk @@ -17,7 +17,7 @@ define $(PKG)_BUILD $(SED) 's,/usr/local,@prefix@,' -i '$(1)/bin/Makefile.in' - touch configure + touch '$(1)/configure' cd '$(1)' && ./configure \ --host='$(TARGET)' \ --disable-shared \