From: Oliver Schmidt
Date: Thu, 30 Jan 2014 12:02:01 +0000 (+0100)
Subject: Avoid include subdirs on install cmdline.
X-Git-Tag: V2.15~188
X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3334082abfe1881591ccb67520b4f3a3b77109fb;p=cc65
Avoid include subdirs on install cmdline.
---
diff --git a/libsrc/Makefile b/libsrc/Makefile
index cbc778f11..3d8277ae5 100644
--- a/libsrc/Makefile
+++ b/libsrc/Makefile
@@ -82,7 +82,7 @@ define INSTALL_recipe
$(if $(prefix),,$(error variable `prefix' must be set))
$(INSTALL) -d $(subst ..,$(DESTDIR)$(datadir),$(dir))
-$(INSTALL) -m644 $(dir)/* $(subst ..,$(DESTDIR)$(datadir),$(dir))
+$(INSTALL) -m644 $(dir)/*.* $(subst ..,$(DESTDIR)$(datadir),$(dir))
endef