comparison src/glib.mk @ 3006:dabfd7db980c

use cp for ln on mingw native builds
author John W. Eaton <jwe@octave.org>
date Thu, 30 May 2013 13:28:23 -0400
parents 47558e958113
children 100e618349f7
comparison
equal deleted inserted replaced
3005:c154d525c70e 3006:dabfd7db980c
51 $(INSTALL) -m755 '$(1).native/gio/glib-compile-schemas' '$(PREFIX)/$(TARGET)/bin/' 51 $(INSTALL) -m755 '$(1).native/gio/glib-compile-schemas' '$(PREFIX)/$(TARGET)/bin/'
52 $(INSTALL) -m755 '$(1).native/gio/glib-compile-resources' '$(PREFIX)/$(TARGET)/bin/' 52 $(INSTALL) -m755 '$(1).native/gio/glib-compile-resources' '$(PREFIX)/$(TARGET)/bin/'
53 endef 53 endef
54 54
55 define $(PKG)_SYMLINK 55 define $(PKG)_SYMLINK
56 ln -sf `which glib-genmarshal` '$(PREFIX)/$(TARGET)/bin/' 56 $(LN_SF) `which glib-genmarshal` '$(PREFIX)/$(TARGET)/bin/'
57 ln -sf `which glib-compile-schemas` '$(PREFIX)/$(TARGET)/bin/' 57 $(LN_SF) `which glib-compile-schemas` '$(PREFIX)/$(TARGET)/bin/'
58 ln -sf `which glib-compile-resources` '$(PREFIX)/$(TARGET)/bin/' 58 $(LN_SF) `which glib-compile-resources` '$(PREFIX)/$(TARGET)/bin/'
59 endef 59 endef
60 60
61 define $(PKG)_BUILD 61 define $(PKG)_BUILD
62 cd '$(1)' && ./autogen.sh 62 cd '$(1)' && ./autogen.sh
63 rm -f '$(PREFIX)/$(TARGET)/bin/glib-*' 63 rm -f '$(PREFIX)/$(TARGET)/bin/glib-*'