We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceefd8b commit 29e3f1aCopy full SHA for 29e3f1a
2 files changed
configure.ac
@@ -34,7 +34,7 @@ CXXFLAGS=$OLD_CXXFLAGS
34
AC_LANG([C++])
35
36
if test "`cd $srcdir; /bin/pwd`" = "`/bin/pwd`"; then
37
- AC_MSG_ERROR([you must configure in a separate build directory])
+ AC_MSG_ERROR("you must configure in a separate build directory")
38
fi
39
40
# Checks for header files.
src/Makefile.am
@@ -27,7 +27,7 @@ libhttpserver_la_LIBADD = -lmicrohttpd
27
libhttpserver_la_LDFLAGS =
28
29
install-exec-hook:
30
- (cd $(DESTDIR)$(includedir) && $(LN_S) -f httpserver.hpp httpserverpp)
+ (mkdir -p $(DESTDIR)$(includedir) && cd $(DESTDIR)$(includedir) && $(LN_S) -f httpserver.hpp httpserverpp)
31
32
uninstall-hook:
33
(cd $(DESTDIR)$(includedir) && rm -f httpserverpp)
0 commit comments