From da34d1ecfea6d6024f5662bf0e3e502b5fc11724 Mon Sep 17 00:00:00 2001 From: Marcelo Roberto Jimenez Date: Tue, 30 Jul 2013 11:26:09 -0300 Subject: [PATCH] Fix for portability issue with GNU make extension 'sort' upnp/sample/Makefile.am:67: warning: sort \ upnp/sample/Makefile.am:67: $(tv_ctrlpt_SOURCES: non-POSIX variable name upnp/sample/Makefile.am:67: (probably a GNU make extension) Reference: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13771#8 (cherry picked from commit dcbbc30f5c41746a8c8b671dade799760b432fb1) --- upnp/sample/Makefile.am | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/upnp/sample/Makefile.am b/upnp/sample/Makefile.am index d462cad..5fdf85b 100644 --- a/upnp/sample/Makefile.am +++ b/upnp/sample/Makefile.am @@ -65,9 +65,8 @@ tv_combo_SOURCES = \ if WITH_DOCUMENTATION examplesdir = $(docdir)/examples examples_DATA = \ - $(sort \ - $(tv_ctrlpt_SOURCES) \ - $(tv_device_SOURCES)) + $(tv_ctrlpt_SOURCES) \ + $(tv_device_SOURCES) endif EXTRA_DIST = \