mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2025-02-07 13:03:08 +00:00
Formerly configure.in.~28~
This commit is contained in:
parent
ad87633b72
commit
1bc63e8cc7
1 changed files with 14 additions and 2 deletions
16
configure.in
16
configure.in
|
@ -78,11 +78,23 @@ if test -f /usr/sccs/get; then
|
||||||
else
|
else
|
||||||
AC_DEFINE(SCCS_GET, "get")
|
AC_DEFINE(SCCS_GET, "get")
|
||||||
fi
|
fi
|
||||||
|
ac_clean_files="$ac_clean_files s.conftest conftoast" # Remove these later.
|
||||||
|
if { /usr/sccs/admin -n s.conftest >/dev/null 2>&1 ||
|
||||||
|
admin -n s.conftest >/dev/null 2>&1 } && test -f s.conftest; then
|
||||||
|
# We successfully created an SCCS file.
|
||||||
|
echo checking if SCCS get command understands -G
|
||||||
|
if $SCCS_GET -Gconftoast s.conftest && test -f conftoast; then
|
||||||
|
: # All is well.
|
||||||
|
else
|
||||||
|
AC_DEFINE(SCCS_GET_MINUS_G)
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
rm -f s.conftest conftoast
|
||||||
|
|
||||||
AC_OUTPUT(Makefile build.sh glob/Makefile)
|
AC_OUTPUT(Makefile build.sh glob/Makefile, [
|
||||||
# Makefile uses this timestamp file to know when to remake Makefile,
|
# Makefile uses this timestamp file to know when to remake Makefile,
|
||||||
# build.sh, and glob/Makefile.
|
# build.sh, and glob/Makefile.
|
||||||
touch stamp-config
|
touch stamp-config])
|
||||||
|
|
||||||
dnl Local Variables:
|
dnl Local Variables:
|
||||||
dnl comment-start: "dnl "
|
dnl comment-start: "dnl "
|
||||||
|
|
Loading…
Reference in a new issue