Drop INSTALL_STRIPPED, always install files unstripped.
This commit is contained in:
3
configure
vendored
3
configure
vendored
@ -199,11 +199,8 @@ fi
|
|||||||
|
|
||||||
if [ -n "$DEBUG" -a "$DEBUG" != no -a "$DEBUG" != false ]; then
|
if [ -n "$DEBUG" -a "$DEBUG" != no -a "$DEBUG" != false ]; then
|
||||||
echo "Building with debugging symbols."
|
echo "Building with debugging symbols."
|
||||||
echo "INSTALL_STRIPPED =" >>$CONFIG_MK
|
|
||||||
echo "CFLAGS += -g" >>$CONFIG_MK
|
echo "CFLAGS += -g" >>$CONFIG_MK
|
||||||
echo "CPPFLAGS += -DDEBUG" >>$CONFIG_MK
|
echo "CPPFLAGS += -DDEBUG" >>$CONFIG_MK
|
||||||
else
|
|
||||||
echo "INSTALL_STRIPPED = -s" >>$CONFIG_MK
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "$OS" in
|
case "$OS" in
|
||||||
|
@ -19,9 +19,9 @@ clean:
|
|||||||
.PHONY: install
|
.PHONY: install
|
||||||
install: all
|
install: all
|
||||||
install -d $(DESTDIR)$(SBINDIR)
|
install -d $(DESTDIR)$(SBINDIR)
|
||||||
install $(INSTALL_STRIPPED) -m 755 $(BIN) $(DESTDIR)$(SBINDIR)
|
install -m 755 $(BIN) $(DESTDIR)$(SBINDIR)
|
||||||
ifdef BUILD_STATIC
|
ifdef BUILD_STATIC
|
||||||
install $(INSTALL_STRIPPED) -m 755 $(BIN).static $(DESTDIR)$(SBINDIR)
|
install -m 755 $(BIN).static $(DESTDIR)$(SBINDIR)
|
||||||
endif
|
endif
|
||||||
ifdef MAN
|
ifdef MAN
|
||||||
install -d $(DESTDIR)$(MANDIR)/man8
|
install -d $(DESTDIR)$(MANDIR)/man8
|
||||||
|
Reference in New Issue
Block a user