Skip to content

Commit

Permalink
Don't delete beanstalkd.spec during distclean.
Browse files Browse the repository at this point in the history
  • Loading branch information
kr committed Nov 25, 2009
1 parent 6e0675e commit 144ad48
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion configure.in
Expand Up @@ -192,7 +192,13 @@ AC_TYPE_UINT16_T

AC_SUBST(INSTALL_STRIP_FLAG)

AC_CONFIG_FILES([Makefile beanstalkd.spec])
# This is a distributed file -- we don't want make distclean to delete it.
# Automake "helpfully" causes make distclean to delete files listed in
# AC_CONFIG_FILES, but it doesn't know about shell variables. We can use
# that limitation to preserve beanstalkd.spec.
generate_but_do_not_delete_upon_distclean=beanstalkd.spec

AC_CONFIG_FILES([Makefile $generate_but_do_not_delete_upon_distclean])
AC_OUTPUT

dnl vim700: ts=2 sw=2 et

0 comments on commit 144ad48

Please sign in to comment.