changeset 169:6337081fd7fa

bugfix in the build rules of packages 'gd' and 'libgeotiff'
author Volker Grabsch <vog@notjusthosting.com>
date Sun, 09 Nov 2008 04:05:58 +0100
parents df943f9448f7
children 194ae633dc3b
files src/gd.mk src/libgeotiff.mk
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/gd.mk	Sun Nov 09 03:37:06 2008 +0100
+++ b/src/gd.mk	Sun Nov 09 04:05:58 2008 +0100
@@ -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 \
--- a/src/libgeotiff.mk	Sun Nov 09 03:37:06 2008 +0100
+++ b/src/libgeotiff.mk	Sun Nov 09 04:05:58 2008 +0100
@@ -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 \