buildsys  Check-in [c2b09b2ecf]

Overview
Comment:Fix usage of ar instead of ${AR}.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: c2b09b2ecf51d2c8794a6e4cf624c5f9d8f44034695456621e9fc305588184d2
User & Date: js on 2011-10-12 14:56:59
Other Links: manifest | tags
Context
2012-02-27
12:15
Better handling of .a files in ${SHARED_LIB} and friends. check-in: ef16263af7 user: js tags: trunk
2011-10-12
14:56
Fix usage of ar instead of ${AR}. check-in: c2b09b2ecf user: js tags: trunk
2011-09-21
19:34
Add a check for install in the example configure.ac. check-in: fa228a2087 user: js tags: trunk
Changes

Modified buildsys.mk.in from [55b520a90f] to [3c1ad0688f].

204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
		esac \
	done; \
	for i in $$ars; do \
		dir=".$$(echo $$i | sed 's/\//_/g').objs"; \
		rm -fr $$dir; \
		mkdir -p $$dir; \
		cd $$dir; \
		ar x ../$$i; \
		for j in *.o; do \
			objs="$$objs $$dir/$$j"; \
		done; \
		cd ..; \
	done; \
	if ${AR} cr $@ $$objs && ${RANLIB} $@; then \
		${LINK_OK}; \







|







204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
		esac \
	done; \
	for i in $$ars; do \
		dir=".$$(echo $$i | sed 's/\//_/g').objs"; \
		rm -fr $$dir; \
		mkdir -p $$dir; \
		cd $$dir; \
		${AR} x ../$$i; \
		for j in *.o; do \
			objs="$$objs $$dir/$$j"; \
		done; \
		cd ..; \
	done; \
	if ${AR} cr $@ $$objs && ${RANLIB} $@; then \
		${LINK_OK}; \