Fix issue with creating include directory

This commit is contained in:
Marcel Holtmann 2009-08-24 12:35:53 -07:00
parent 07229c1a71
commit 86650a089b
2 changed files with 2 additions and 1 deletions

View File

@ -278,7 +278,7 @@ scripts/%.rules:
$(lib_libbluetooth_la_OBJECTS): $(local_headers)
lib/bluetooth/%.h: lib/%.h
$(AM_V_at)if [ ! -e lib/bluetooth ] ; then mkdir lib/bluetooth ; fi
$(AM_V_at)if [ ! -e lib/bluetooth ] ; then $(MKDIR_P) lib/bluetooth ; fi
$(AM_V_GEN)$(LN_S) $(abs_top_srcdir)/$< $@
clean-local: lib/bluetooth

View File

@ -22,6 +22,7 @@ AC_PROG_CC_PIE
AC_PROG_INSTALL
AC_PROG_YACC
AM_PROG_LEX
AM_PROG_MKDIR_P
m4_define([_LT_AC_TAGCONFIG], [])
m4_ifdef([AC_LIBTOOL_TAGS], [AC_LIBTOOL_TAGS([])])