orlikowski 01/06/07 19:13:21
Modified: server Makefile.in
Log:
(A few) Small changes to pass full paths instead of relatives.
One relative left; not sure whether to change it too or not.
Revision Changes Path
1.48 +4 -3 httpd-2.0/server/Makefile.in
Index: Makefile.in
===================================================================
RCS file: /home/cvs/httpd-2.0/server/Makefile.in,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- Makefile.in 2001/06/07 10:03:13 1.47
+++ Makefile.in 2001/06/08 02:13:18 1.48
@@ -30,12 +30,13 @@
util.lo: test_char.h
-EXPORT_FILES = ../srclib/apr/apr.exports ../srclib/apr-util/aprutil.exports \
+EXPORT_FILES = $(top_srcdir)/srclib/apr/apr.exports \
+ $(top_srcdir)/srclib/apr-util/aprutil.exports \
$(TARGET_EXPORTS)
delete-exports:
@if test -f $(TARGET_EXPORTS); then \
- headers="`find ../include/*.h -newer $(TARGET_EXPORTS)`" ; \
+ headers="`find $(top_srcdir)/include/*.h -newer $(TARGET_EXPORTS)`" ; \
if test -n "$$headers"; then \
echo Found newer headers. Will rebuild $(TARGET_EXPORTS). ; \
echo rm -f $(TARGET_EXPORTS) ; \
@@ -50,7 +51,7 @@
$(top_srcdir)/os/$(OS_DIR)/*.h > $@
exports.c: $(EXPORT_FILES)
- (cat $(EXPORT_FILES) | ../build/buildexports.sh ..) > $@
+ (cat $(EXPORT_FILES) | $(top_srcdir)/build/buildexports.sh ..) > $@
# wtf does this have to be explicit????
exports.lo: exports.c
|