aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2017-05-15 21:26:51 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2017-05-19 12:36:32 +0000
commit9f77d7bd0e39cfd0f3e952c5b375abba5a415d37 (patch)
tree4c5a0db14945c104ddc8f4c25a3df759528b39be /openbsc
parent71124de33c86ea5740eeabea381bff80b23ffd30 (diff)
fix '/include/openbsc ' to have no trailing space
The newline and $NULL manage to append a trailing space to the 'openbsc' dir. This was broken in commit 7b6673fa06dada3ec4586b1c0d735e9df4177a48 "Consistenly format variables in */Makefile.am files" by Change-Id Ifa21513c007072314097b7bec188579972dc1694 Add a comment to prevent this in the future. Reported-by: Andreas Mueller <andreas.mueller@criticallabs.org> Change-Id: I218027459e3b2aaa817d91eb3f69d9c0b10dcd4e
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/include/openbsc/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsc/include/openbsc/Makefile.am b/openbsc/include/openbsc/Makefile.am
index 7ddf323cd..eb09e1878 100644
--- a/openbsc/include/openbsc/Makefile.am
+++ b/openbsc/include/openbsc/Makefile.am
@@ -93,6 +93,6 @@ openbsc_HEADERS = \
meas_rep.h \
$(NULL)
-openbscdir = \
- $(includedir)/openbsc \
- $(NULL)
+# DO NOT add a newline and '$(NULL)' to this line. That would add a trailing
+# space to the directory installed: $prefix/include/'openbsc '
+openbscdir = $(includedir)/openbsc