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.
76
1998/04/17 21:
15
:
02
mirar Exp $
+
# $Id: Makefile.in,v 1.
77
1998/04/17 21:
53
:
21
mirar 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:248:
done @echo ; echo "Installing modules written in Pike..."; \ for f in `cd "$(LIBDIR_SRC)"; find . -type f -print`; do \ if cmp "$(share_prefix)/$$f" "$(TMP_LIBDIR)/$$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 \
+
if test "x$(lib_prefix)" != "x$(share_prefix)"; then \
mv -f "$(lib_prefix)/$$f" "$(lib_prefix)/$$f.now_in_share.old"; \ else : ; fi; \
-
+
else : ; fi; \
cp "$(LIBDIR_SRC)/$$f" "$(share_prefix)/$$f" || exit 1; \ chmod a+r "$(share_prefix)/$$f"; \ chmod u+w "$(share_prefix)/$$f"; \ fi ; \ done @echo ; echo "Installing modules written in C..."; \ for f in `cd "$(TMP_LIBDIR)"; find . -type f -print`; do \ if cmp "$(lib_prefix)/$$f" "$(TMP_LIBDIR)/$$f" >/dev/null 2>&1 ; \ then : ; else \ echo "$(lib_prefix)/$$f"; \