buildsys  Check-in [ef768e3273]

Overview
Comment:Make ${plugindir} independent from ${libdir}.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: ef768e327304b9bfeb6ad8dbe098ae4d9b25766bde6956be1f90e684363d1239
User & Date: js on 2007-10-13 08:24:53
Other Links: manifest | tags
Context
2007-10-21
00:32
Fix -soname. check-in: 1a31e6f238 user: js tags: trunk
2007-10-13
08:24
Make ${plugindir} independent from ${libdir}. check-in: ef768e3273 user: js tags: trunk
08:14
Fix dependency generation when using NetBSD make. check-in: f0b9d95ddc user: js tags: trunk
Changes

Modified buildsys.mk.in from [c1026d46fe] to [df6825a5b7].

54
55
56
57
58
59
60
61

62
63
64
65
66
67
68
54
55
56
57
58
59
60

61
62
63
64
65
66
67
68







-
+







MKDIR_P = mkdir -p
INSTALL = install
SHELL = @SHELL@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
libdir = @libdir@
plugindir ?= ${PACKAGE}
plugindir ?= ${libdir}/${PACKAGE}
datarootdir = @datarootdir@
datadir = @datadir@
includedir = @includedir@
includesubdir ?= ${PACKAGE}
mandir = @mandir@
mansubdir ?= man1

217
218
219
220
221
222
223
224

225
226
227
228
229
230
231
217
218
219
220
221
222
223

224
225
226
227
228
229
230
231







-
+







		else \
			${INSTALL_FAILED}; \
		fi \
	done

	for i in ${PLUGIN}; do \
		${INSTALL_STATUS}; \
		if ${MKDIR_P} ${DESTDIR}${libdir}/${plugindir} && ${INSTALL} -m 755 $$i ${DESTDIR}${libdir}/${plugindir}/$$i; then \
		if ${MKDIR_P} ${DESTDIR}${plugindir} && ${INSTALL} -m 755 $$i ${DESTDIR}${plugindir}/$$i; then \
			${INSTALL_OK}; \
		else \
			${INSTALL_FAILED}; \
		fi \
	done

	for i in ${DATA}; do \
290
291
292
293
294
295
296
297
298


299
300
301
302
303
304
305

306
307
308
309
310
311
312
290
291
292
293
294
295
296


297
298
299
300
301
302
303
304

305
306
307
308
309
310
311
312







-
-
+
+






-
+







			else \
				${DELETE_FAILED}; \
			fi \
		fi \
	done

	for i in ${PLUGIN}; do \
		if test -f ${DESTDIR}${libdir}/${plugindir}/$$i; then \
			if rm -f ${DESTDIR}${libdir}/${plugindir}/$$i; then \
		if test -f ${DESTDIR}${plugindir}/$$i; then \
			if rm -f ${DESTDIR}${plugindir}/$$i; then \
				${DELETE_OK}; \
			else \
				${DELETE_FAILED}; \
			fi \
		fi \
	done
	-rmdir ${DESTDIR}${libdir}/${plugindir} >/dev/null 2>&1
	-rmdir ${DESTDIR}${plugindir} >/dev/null 2>&1

	for i in ${DATA}; do \
		if test -f ${DESTDIR}${datadir}/${PACKAGE}/$$i; then \
			if rm -f ${DESTDIR}${datadir}/${PACKAGE}/$$i; then \
				${DELETE_OK}; \
			else \
				${DELETE_FAILED}; \