0001-Makefile.am-Error-Fix.patch 890 B

12345678910111213141516171819202122232425262728293031323334
  1. From 088bb4cef2c93bef312b076a8c7a3c798cbf2f19 Mon Sep 17 00:00:00 2001
  2. From: daicy <daicy@cn.fujitsu.com>
  3. Date: Tue, 8 Dec 2015 11:45:01 +0900
  4. Subject: [PATCH] Makefile.am: Error Fix
  5. Do not compile man dir since error always occur.
  6. | sed: file filenames.sed line 3: unterminated `s' command
  7. | make[2]: *** [sessreg.1] Error 1
  8. It is not a good way.But can remove it from PNBLACKLIST.
  9. Upstream-Status: pending
  10. Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
  11. ---
  12. Makefile.am | 2 +-
  13. 1 file changed, 1 insertion(+), 1 deletion(-)
  14. diff --git a/Makefile.am b/Makefile.am
  15. index cddffd0..94f7048 100644
  16. --- sessreg-1.1.0/Makefile.am
  17. +++ b/Makefile.am
  18. @@ -18,7 +18,7 @@
  19. # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  20. # PERFORMANCE OF THIS SOFTWARE.
  21. -SUBDIRS = man
  22. +#SUBDIRS = man
  23. bin_PROGRAMS = sessreg
  24. AM_CFLAGS = $(CWARNFLAGS) $(SESSREG_CFLAGS)
  25. --
  26. 1.8.4.2