+Mon Mar 8 01:16:30 1999 Manfred Hollstein <manfred@s-direktnet.de>
+ Jeff Law <law@cygnus.com>
+
+ * configure.in (cpp_install_dir): Initialize from $enable_cpp
+ if that's looking like a pathname.
+ * configure: Rebuilt.
+
+ * Makefile.in (install-cpp, uninstall-cpp): cpp_install_dir is an
+ absolute pathname, not a $prefix relative pathname.
+
Fri Mar 5 01:19:22 1999 Jeffrey A Law (law@cygnus.com)
Thu Dec 17 18:21:49 1998 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
-rm -f $(bindir)/cpp
$(INSTALL_PROGRAM) -m 755 cpp.sh $(bindir)/cpp
if [ x$(cpp_install_dir) != x ]; then \
- rm -f $(prefix)/$(cpp_install_dir)/cpp; \
- $(INSTALL_PROGRAM) -m 755 cpp.sh $(prefix)/$(cpp_install_dir)/cpp; \
+ rm -f $(cpp_install_dir)/cpp; \
+ $(INSTALL_PROGRAM) -m 755 cpp.sh $(cpp_install_dir)/cpp; \
else true; fi
cpp.sh: $(srcdir)/cpp.in Makefile
uninstall-cpp:
-rm -f $(bindir)/cpp
-if [ x$(cpp_install_dir) != x ]; then \
- rm -f $(prefix)/$(cpp_install_dir)/cpp; \
+ rm -f $(cpp_install_dir)/cpp; \
else true; fi
# Install float.h for cross compiler.
host_xmake_file=
host_truncate_target=
host_exeext=
-
-# It is relative to $prefix.
cpp_install_dir=
# Decode the host machine, then the target machine.
if [ x$enable_cpp != x ]
then
tmake_file="$tmake_file t-install-cpp"
+ case x$enable_cpp in
+ xyes | xno) ;;
+ x/*) cpp_install_dir=$enable_cpp ;;
+ x.*) echo "alternate cpp script installation directory must be an absolute path" 1>&2
+ exit 1
+ ;;
+ esac
fi
# Say what files are being used for the output code and MD file.
# Figure out what assembler alignment features are present.
echo $ac_n "checking assembler alignment features""... $ac_c" 1>&6
-echo "configure:5408: checking assembler alignment features" >&5
+echo "configure:5413: checking assembler alignment features" >&5
gcc_cv_as=
gcc_cv_as_alignment_features=
gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,gcc$,gas,'`
host_xmake_file=
host_truncate_target=
host_exeext=
-
-# It is relative to $prefix.
cpp_install_dir=
# Decode the host machine, then the target machine.
if [[ x$enable_cpp != x ]]
then
tmake_file="$tmake_file t-install-cpp"
+ case x$enable_cpp in
+ xyes | xno) ;;
+ x/*) cpp_install_dir=$enable_cpp ;;
+ x.*) echo "alternate cpp script installation directory must be an absolute path" 1>&2
+ exit 1
+ ;;
+ esac
fi
# Say what files are being used for the output code and MD file.