summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-06-07 03:06:04 (GMT)
committerAlexey Neyman <stilor@att.net>2017-06-08 05:38:53 (GMT)
commit1b4e784a0ba636646def1db5ca012fd54ee7a81c (patch)
tree175814b416570817c9a16f3174276ea4cce78bbf /Makefile.in
parent10089f3c9aa41bdf12f2ca1d85d052f347dd38d5 (diff)
Fix debuild warnings/errors
- Update .gitignore, do not place .gitignore into directories installed in bulk - Remove executable permissions and shebangs from the scripts that are supposed to be invoked only via ct-ng frontent; prepend them with $(bash). Despite what showSamples.sh said, it already has some bashisms. - Remove --with autotools-dev and override dh_update_autotools_config to avoid having config.{sub,guess} clobbered with older versions - Install bash completion where Debian (now) expects it - Update man page to use .\" as the comment delimiter, instead of undefined macro (."); also, minor text edits. - Install kconfig.mk without execute permission. - Remove shell wrappers from 170-localedef-fix-trampoline.patch, we do not use that for applying patches - Revoke execute permissions on 210-expat.sh - Get flags from dpkg-buildflags if available Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 4980346..0cec737 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -145,7 +145,7 @@ install: build real-install
clean: $(patsubst %,clean-%,$(TARGETS))
distclean: clean
- $(call __silent_rm,Makefile config/configure.in)
+ $(call __silent_rm,Makefile kconfig/Makefile config/configure.in)
mrproper: distclean
$(call __silent_rmdir,autom4te.cache config/gen)
@@ -164,7 +164,6 @@ build-bin: $(PROG_NAME) \
scripts/crosstool-NG.sh \
scripts/saveSample.sh \
scripts/showConfig.sh
- $(call __silent,CHMOD,$^)chmod 755 $^
build-lib: paths.mk \
paths.sh
@@ -274,7 +273,7 @@ install-lib: $(DESTDIR)$(libdir) \
LIB_SUB_DIR := config contrib patches scripts
$(patsubst %,install-lib-%-copy,$(LIB_SUB_DIR)): install-lib-%-copy: $(DESTDIR)$(libdir)
- $(call __silent,INSTDIR,$*)tar cf - --exclude='*.sh.in' --exclude='*.in.in' $* \
+ $(call __silent,INSTDIR,$*)tar cf - --exclude='*.sh.in' --exclude='*.in.in' --exclude=.gitignore $* \
|(cd "$(DESTDIR)$(libdir)"; tar xf -)
# Dependency-only by default.