buildsys  Check-in [1b298e5879]

Overview
Comment:It seems that $as_echo is undefined on some systems. Fixed.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 1b298e58796e15125e2fd91d92809913034cf94139013d8ec4838aee9b92d7c1
User & Date: js on 2008-11-01 19:27:03
Other Links: manifest | tags
Context
2008-11-01
20:03
Don't delete .deps files on make clean. check-in: 65c48c4be2 user: js tags: trunk
19:27
It seems that $as_echo is undefined on some systems. Fixed. check-in: 1b298e5879 user: js tags: trunk
19:19
Touch .deps files in the past so they are always recreated. check-in: 8822a3853f user: js tags: trunk
Changes

Modified m4/buildsys.m4 from [2638d95fc7] to [fe8f5c632d].

130
131
132
133
134
135
136
137
138
139
140
141
	AC_SUBST(PLUGIN_SUFFIX)
	AC_SUBST(INSTALL_LIB)
	AC_SUBST(UNINSTALL_LIB)
	AC_SUBST(CLEAN_LIB)
])

AC_DEFUN([BUILDSYS_TOUCH_DEPS], [
	$as_echo "$as_me: Touching .deps files"
	for i in $(find . -name Makefile); do
		touch -t 0001010000 $(dirname $i)/.deps
	done
])







|




130
131
132
133
134
135
136
137
138
139
140
141
	AC_SUBST(PLUGIN_SUFFIX)
	AC_SUBST(INSTALL_LIB)
	AC_SUBST(UNINSTALL_LIB)
	AC_SUBST(CLEAN_LIB)
])

AC_DEFUN([BUILDSYS_TOUCH_DEPS], [
	${as_echo:="echo"} "${as_me:="configure"}: Touching .deps files"
	for i in $(find . -name Makefile); do
		touch -t 0001010000 $(dirname $i)/.deps
	done
])