From b60d2554e2182d1206cd8e558a2bf59a17ac8b4a Mon Sep 17 00:00:00 2001 From: Jay Larson Date: Tue, 10 Jul 2018 10:11:02 -0500 Subject: [PATCH] Moved info files into dev package --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 893c6a7..9815973 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ REPO = core BRIEF = The GNU C Library DESC = The GNU C Library is used as the C library in the GNU system and in \ GNU/Linux systems, as well as many other systems that use Linux as the kernel. -SNAPVER = 9 +SNAPVER = 10 ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1) TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n') @@ -85,7 +85,7 @@ $(ROOT): $(BUILDDIR)/elf/ldd mv -v $(ROOT)/etc/ld.so.cache $(ROOT)/usr/share/glibc @install -d -v $(DEV)/SNAP && \ - for file in `find $(ROOT)|egrep 'man3\/|\.a$$|\.c$$|\.h$$'`; do \ + for file in `find $(ROOT)|egrep 'info\/|man3\/|\.a$$|\.c$$|\.h$$'`; do \ path=`dirname $$file|sed "s[$(ROOT)[$(DEVROOT)["`; \ mkdir -p $$path; \ mv $$file $$path; \