comparison src/plibc.mk @ 2756:7393f2319756

package plibc: style improvements
author Mark Brand <mabrand@mabrand.nl>
date Tue, 18 Sep 2012 23:08:33 +0200
parents 9e3a605e2c33
children 47558e958113
comparison
equal deleted inserted replaced
2755:9e3a605e2c33 2756:7393f2319756
13 echo 'TODO: Updates for package plibc need to be fixed.' >&2; 13 echo 'TODO: Updates for package plibc need to be fixed.' >&2;
14 echo $(plibc_VERSION) 14 echo $(plibc_VERSION)
15 endef 15 endef
16 16
17 define $(PKG)_BUILD 17 define $(PKG)_BUILD
18 cd '$(1)' && \ 18 chmod 0755 '$(1)/configure'
19 chmod 0755 configure && \ 19 cd '$(1)' && ./configure \
20 ./configure \
21 --host='$(TARGET)' \ 20 --host='$(TARGET)' \
21 --build="`config.guess`" \
22 --prefix='$(PREFIX)/$(TARGET)' \ 22 --prefix='$(PREFIX)/$(TARGET)' \
23 --enable-static \ 23 --enable-static \
24 --disable-shared 24 --disable-shared
25 $(MAKE) -C '$(1)' -j '$(JOBS)' install 25 $(MAKE) -C '$(1)' -j '$(JOBS)' install
26 endef 26 endef