mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-21 21:57:48 +00:00
Kill "./configure --local", it does not work and it is dangerous if one tries to "make uninstall"!
This commit is contained in:
parent
9265403b8b
commit
439940ab2e
18
Makefile.in
18
Makefile.in
@ -12,7 +12,6 @@ LIBDIR := @@LIBDIR@@
|
|||||||
DOCDIR := @@DOCDIR@@
|
DOCDIR := @@DOCDIR@@
|
||||||
MANDIR := @@MANDIR@@
|
MANDIR := @@MANDIR@@
|
||||||
DATE := @@DATE@@
|
DATE := @@DATE@@
|
||||||
LOCAL := @@LOCAL@@
|
|
||||||
MAKE := $(shell which make || type -p make || echo /usr/bin/make)
|
MAKE := $(shell which make || type -p make || echo /usr/bin/make)
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
@ -66,19 +65,12 @@ clean-doc:
|
|||||||
#--------------------------------------
|
#--------------------------------------
|
||||||
# Install rules
|
# Install rules
|
||||||
|
|
||||||
# If using localy, don't install
|
install-bin: $(BINDIR)
|
||||||
install-local:
|
|
||||||
@if [ "$(LOCAL)" = "1" ]; then \
|
|
||||||
echo "You're using local copy as runtime. You can't install."; \
|
|
||||||
false; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
install-bin: install-local $(BINDIR)
|
|
||||||
@install -m 755 ct-ng $(BINDIR)/ct-ng
|
@install -m 755 ct-ng $(BINDIR)/ct-ng
|
||||||
|
|
||||||
install-lib: install-local $(LIBDIR) install-lib-main install-lib-samples
|
install-lib: $(LIBDIR) install-lib-main install-lib-samples
|
||||||
|
|
||||||
install-lib-main: install-local $(LIBDIR)
|
install-lib-main: $(LIBDIR)
|
||||||
@for src_dir in config kconfig patches scripts tools; do \
|
@for src_dir in config kconfig patches scripts tools; do \
|
||||||
tar cf - --exclude=.svn $${src_dir} |(cd $(LIBDIR); tar xf -); \
|
tar cf - --exclude=.svn $${src_dir} |(cd $(LIBDIR); tar xf -); \
|
||||||
done
|
done
|
||||||
@ -88,13 +80,13 @@ install-lib-main: install-local $(LIBDIR)
|
|||||||
|
|
||||||
# Samples need a little love:
|
# Samples need a little love:
|
||||||
# - change every occurence of CT_TOP_DIR to CT_LIB_DIR
|
# - change every occurence of CT_TOP_DIR to CT_LIB_DIR
|
||||||
install-lib-samples: install-local $(LIBDIR) install-lib-main
|
install-lib-samples: $(LIBDIR) install-lib-main
|
||||||
@tar cf - --exclude=.svn samples |(cd $(LIBDIR); tar xf -)
|
@tar cf - --exclude=.svn samples |(cd $(LIBDIR); tar xf -)
|
||||||
@for samp_file in $(LIBDIR)/samples/*/crosstool.config; do \
|
@for samp_file in $(LIBDIR)/samples/*/crosstool.config; do \
|
||||||
sed -r -i -e 's,\$$\{CT_TOP_DIR\},\$$\{CT_LIB_DIR\},g;' $${samp_file}; \
|
sed -r -i -e 's,\$$\{CT_TOP_DIR\},\$$\{CT_LIB_DIR\},g;' $${samp_file}; \
|
||||||
done
|
done
|
||||||
|
|
||||||
install-doc: install-local $(DOCDIR) $(MANDIR)
|
install-doc: $(DOCDIR) $(MANDIR)
|
||||||
@for doc_file in CREDITS docs/overview.txt; do \
|
@for doc_file in CREDITS docs/overview.txt; do \
|
||||||
install -m 644 "$${doc_file}" $(DOCDIR); \
|
install -m 644 "$${doc_file}" $(DOCDIR); \
|
||||||
done
|
done
|
||||||
|
11
configure
vendored
11
configure
vendored
@ -9,7 +9,6 @@ BINDIR_set=
|
|||||||
LIBDIR_set=
|
LIBDIR_set=
|
||||||
DOCDIR_set=
|
DOCDIR_set=
|
||||||
MANDIR_set=
|
MANDIR_set=
|
||||||
LOCAL_set=
|
|
||||||
|
|
||||||
get_optval(){
|
get_optval(){
|
||||||
local ret
|
local ret
|
||||||
@ -80,7 +79,6 @@ Defaults for the options are specified in brackets.
|
|||||||
Configuration:
|
Configuration:
|
||||||
-h, --help display this help and exit
|
-h, --help display this help and exit
|
||||||
--prefix=PREFIX install files in PREFIX [${PREFIX_DEFAULT}]
|
--prefix=PREFIX install files in PREFIX [${PREFIX_DEFAULT}]
|
||||||
--local don't install, and use current directory
|
|
||||||
|
|
||||||
By default, \`make install' will install all the files in
|
By default, \`make install' will install all the files in
|
||||||
\`${PREFIX_DEFAULT}/bin', \`${PREFIX_DEFAULT}/lib' etc. You can specify
|
\`${PREFIX_DEFAULT}/bin', \`${PREFIX_DEFAULT}/lib' etc. You can specify
|
||||||
@ -104,20 +102,12 @@ while [ $# -ne 0 ]; do
|
|||||||
--libdir*) set_libdir "$1" "$2" && shift || shift 2;;
|
--libdir*) set_libdir "$1" "$2" && shift || shift 2;;
|
||||||
--docdir*) set_docdir "$1" "$2" && shift || shift 2;;
|
--docdir*) set_docdir "$1" "$2" && shift || shift 2;;
|
||||||
--mandir*) set_mandir "$1" "$2" && shift || shift 2;;
|
--mandir*) set_mandir "$1" "$2" && shift || shift 2;;
|
||||||
--local) LOCAL_set=1; shift;;
|
|
||||||
--help|-h) do_help; exit 0;;
|
--help|-h) do_help; exit 0;;
|
||||||
*) do_help; exit 1;;
|
*) do_help; exit 1;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
[ -z "${PREFIX}" ] && set_prefix "" "${PREFIX_DEFAULT}"
|
[ -z "${PREFIX}" ] && set_prefix "" "${PREFIX_DEFAULT}"
|
||||||
if [ "${LOCAL_set}" = "1" ]; then
|
|
||||||
set_prefix "" $(pwd)
|
|
||||||
set_bindir "" $(pwd)
|
|
||||||
set_libdir "" $(pwd)
|
|
||||||
set_docdir "" $(pwd)/docs
|
|
||||||
set_mandir "" $(pwd)/docs
|
|
||||||
fi
|
|
||||||
|
|
||||||
sed -r -e "s,@@BINDIR@@,${BINDIR},g;" \
|
sed -r -e "s,@@BINDIR@@,${BINDIR},g;" \
|
||||||
-e "s,@@LIBDIR@@,${LIBDIR},g;" \
|
-e "s,@@LIBDIR@@,${LIBDIR},g;" \
|
||||||
@ -125,7 +115,6 @@ sed -r -e "s,@@BINDIR@@,${BINDIR},g;" \
|
|||||||
-e "s,@@MANDIR@@,${MANDIR},g;" \
|
-e "s,@@MANDIR@@,${MANDIR},g;" \
|
||||||
-e "s,@@VERSION@@,${VERSION},g;" \
|
-e "s,@@VERSION@@,${VERSION},g;" \
|
||||||
-e "s,@@DATE@@,${DATE},g;" \
|
-e "s,@@DATE@@,${DATE},g;" \
|
||||||
-e "s,@@LOCAL@@,${LOCAL_set},g;" \
|
|
||||||
Makefile.in >Makefile
|
Makefile.in >Makefile
|
||||||
|
|
||||||
cat <<__EOF__
|
cat <<__EOF__
|
||||||
|
Loading…
Reference in New Issue
Block a user