]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Fix minor typos and errors
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Tue, 20 Nov 2012 00:20:10 +0000 (00:20 +0000)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Tue, 20 Nov 2012 00:20:54 +0000 (00:20 +0000)
Make.inc.in
src/include/all.mk

index 9cc012903516cc60909b6a50e9e3517fb977be09..5234c1b3176c5ae8b1e6ea9e757ffc3ace766e06 100644 (file)
@@ -101,7 +101,7 @@ endif
 
 #
 #  This allows dlopen to do runtime checks for version mistmatches
-#  between what it was originally linked with the the library it's
+#  between what it was originally linked with, and the library it's
 #  actually loading.
 #
 LDFLAGS += -release=$(RADIUSD_VERSION_STRING)
index d15b5d945beafddf8a60a318ebbc7478d10bf0c2..ac0f9f7076f8e5424c8f023cc7654b3b2c23c5e5 100644 (file)
@@ -56,11 +56,12 @@ SRC_INCLUDE_DIR := ${R}${includedir}/freeradius
 install.src.include: $(addprefix ${SRC_INCLUDE_DIR}/,${HEADERS})
 
 # install the headers by re-writing the local files
+#
+# install-sh function for creating directories gets confused
+# if there's a trailing slash, tries to create a directory
+# it already created, and fails...
 ${SRC_INCLUDE_DIR}/%.h: ${top_srcdir}/src/include/%.h
        @echo INSTALL $(notdir $<)
-       # install-sh function for creating directories gets confused
-       # if there's a trailing slash, tries to create a directory
-       # it already created, and fails...
        @$(INSTALL) -d -m 755 `echo $(dir $@) | sed 's/\/$$//'`
        @sed 's/^#include <freeradius-devel/#include <freeradius/' < $< > $@
        @chmod 644 $@