diff src/qwtplot3d.mk @ 3014:b6c7244a2f66

Use HOST_BINDIR, HOST_LIBDIR, and HOST_INCDIR instead of MXE_BINDIR, MXE_LIBDIR, and MXE_INCDIR. Attempt to use these variables consistently instead of using $(HOST_PREFIX)/bin, $(HOST_PREFIX)/lib, and $(HOST_PREFIX)/include
author John W. Eaton <jwe@octave.org>
date Sun, 02 Jun 2013 16:59:24 -0400
parents 100e618349f7
children 951da75fd09c
line wrap: on
line diff
--- a/src/qwtplot3d.mk	Sun Jun 02 12:40:32 2013 -0400
+++ b/src/qwtplot3d.mk	Sun Jun 02 16:59:24 2013 -0400
@@ -18,9 +18,9 @@
 define $(PKG)_BUILD
     cd '$(1)' && '$(BUILD_TOOLS_PREFIX)/bin/$(TARGET)-qmake'
     $(MAKE) -C '$(1)' -j '$(JOBS)'
-    $(INSTALL) -d '$(HOST_PREFIX)/lib'
-    $(INSTALL) -m644 '$(1)/lib/libqwtplot3d.a' '$(HOST_PREFIX)/lib/'
-    $(INSTALL) -d '$(HOST_PREFIX)/include'
-    $(INSTALL) -d '$(HOST_PREFIX)/include/qwtplot3d'
-    $(INSTALL) -m644 '$(1)/include'/*.h  '$(HOST_PREFIX)/include/qwtplot3d/'
+    $(INSTALL) -d '$(HOST_LIBDIR)'
+    $(INSTALL) -m644 '$(1)/lib/libqwtplot3d.a' '$(HOST_LIBDIR)'
+    $(INSTALL) -d '$(HOST_INCDIR)'
+    $(INSTALL) -d '$(HOST_INCDIR)/qwtplot3d'
+    $(INSTALL) -m644 '$(1)/include'/*.h  '$(HOST_INCDIR)/qwtplot3d'
 endef