From 9f77d7bd0e39cfd0f3e952c5b375abba5a415d37 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Mon, 15 May 2017 21:26:51 +0200 Subject: [PATCH] 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 Change-Id: I218027459e3b2aaa817d91eb3f69d9c0b10dcd4e --- openbsc/include/openbsc/Makefile.am | 6 +++--- 1 file 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