ObjFW  Check-in [b58417c7f6]

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: b58417c7f60b3478ceab5d8957af308f64d4f8d5e74f43d5c389e27598cae5c6
User & Date: js on 2008-11-01 19:27:38
Other Links: manifest | tags
Context
2008-11-01
19:55
Oops, forgot to add a file. check-in: 04462a0d89 user: js tags: trunk
19:27
It seems that $as_echo is undefined on some systems. Fixed. check-in: b58417c7f6 user: js tags: trunk
19:19
Touch .deps files in the past so they are always recreated. check-in: 1816a2e465 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
])