pike.git
/
src
/
Makefile.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/Makefile.in:1:
#
-
# $Id: Makefile.in,v 1.
102
1998/07/
22
00
:
33
:
24
hubbe Exp $
+
# $Id: Makefile.in,v 1.
103
1998/07/
26
10
:
28
:
07
hubbe Exp $
# # This line is needed on some machines. @SET_MAKE@ # Don't change this line. Define EXTRALIBS before this line if you # wish to add any libraries. LIBS=@LIBS@ $(EXTRALIBS) # This is normall the install program in the source directory
pike.git/src/Makefile.in:217:
done @echo ; echo "Installing pike..."; \ if cmp "$(exec_prefix)/pike" ./pike >/dev/null 2>&1 ; then \ echo "This pike-binary is already installed." ; \ else \ if [ -f "$(exec_prefix)/pike" ]; then \ echo Renaming old "$(exec_prefix)/pike" to "$(exec_prefix)/pike.old"; \ mv -f "$(exec_prefix)/pike" "$(exec_prefix)/pike.old" || exit 1; \ else : ; fi ; \ echo "$(exec_prefix)/pike"; \
-
$(INSTALL) ./pike $(exec_prefix) || exit 1; \
-
chmod a+rx $(exec_prefix)/pike; \
-
chmod u+w $(exec_prefix)/pike; \
+
$(INSTALL) ./pike
"
$(exec_prefix)
"
|| exit 1; \
+
chmod a+rx
"
$(exec_prefix)/pike
"
; \
+
chmod u+w
"
$(exec_prefix)/pike
"
; \
fi @if [ -f ./hilfe ]; then \ echo ; echo "Installing hilfe..."; \ if cmp "$(exec_prefix)/hilfe" $(TMP_BINDIR)/hilfe >/dev/null 2>&1 ; \ then \ echo "$(exec_prefix)/hilfe already installed." ; \ else \
-
if [ -f $(exec_prefix)/hilfe ]; then \
-
mv $(exec_prefix)/hilfe $(exec_prefix)/hilfe.old || exit 1; \
+
if [ -f
"
$(exec_prefix)/hilfe
"
]; then \
+
mv
"
$(exec_prefix)/hilfe
"
"
$(exec_prefix)/hilfe.old
"
|| exit 1; \
else : ; fi; \ echo "$(exec_prefix)/hilfe"; \
-
$(INSTALL) $(TMP_BINDIR)/hilfe $(exec_prefix) || exit 1; \
-
chmod a+rx $(exec_prefix)/hilfe; \
-
chmod u+w $(exec_prefix)/hilfe; \
+
$(INSTALL) $(TMP_BINDIR)/hilfe
"
$(exec_prefix)
"
|| exit 1; \
+
chmod a+rx
"
$(exec_prefix)/hilfe
"
; \
+
chmod u+w
"
$(exec_prefix)/hilfe
"
; \
fi; \ else : ; fi @echo ; echo "Installing header-files..."; \ for a in $(SRCDIR)/*.h *.h ; do \
-
$(INSTALL) $$a $(prefix)/include/pike || exit 1; \
-
chmod a+r $(prefix)/include/pike ; \
-
chmod u+w $(prefix)/include/pike ; \
+
$(INSTALL) $$a
"
$(prefix)/include/pike
"
|| exit 1; \
+
chmod a+r
"
$(prefix)/include/pike
"
; \
+
chmod u+w
"
$(prefix)/include/pike
"
; \
done @echo ; echo "Installing modules written in Pike..."; \ for f in `cd "$(LIBDIR_SRC)"; find . -type f -print | grep -v '/CVS/'`; do \ if cmp "$(share_prefix)/$$f" "$(LIBDIR_SRC)/$$f" >/dev/null 2>&1 ; \ then : ; else \ echo "$(share_prefix)/$$f"; \ if [ -f "$(share_prefix)/$$f" ]; then \ mv -f "$(share_prefix)/$$f" "$(share_prefix)/$$f.old"; \ else : ; fi; \ if [ -f "$(lib_prefix)/$$f" ]; then \