Skip to content

Commit 29e3f1a

Browse files
author
Sebastiano Merlino
committed
Modified in order to avoid errors by autoconf
1 parent ceefd8b commit 29e3f1a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ CXXFLAGS=$OLD_CXXFLAGS
3434
AC_LANG([C++])
3535

3636
if test "`cd $srcdir; /bin/pwd`" = "`/bin/pwd`"; then
37-
AC_MSG_ERROR([you must configure in a separate build directory])
37+
AC_MSG_ERROR("you must configure in a separate build directory")
3838
fi
3939

4040
# Checks for header files.

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ libhttpserver_la_LIBADD = -lmicrohttpd
2727
libhttpserver_la_LDFLAGS =
2828

2929
install-exec-hook:
30-
(cd $(DESTDIR)$(includedir) && $(LN_S) -f httpserver.hpp httpserverpp)
30+
(mkdir -p $(DESTDIR)$(includedir) && cd $(DESTDIR)$(includedir) && $(LN_S) -f httpserver.hpp httpserverpp)
3131

3232
uninstall-hook:
3333
(cd $(DESTDIR)$(includedir) && rm -f httpserverpp)

0 commit comments

Comments
 (0)