diff options
author | Ryan Bloom <rbb@apache.org> | 2000-10-04 19:00:36 +0000 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-10-04 19:00:36 +0000 |
commit | 006d343a71fd352ef97ea967d11f095f274e51b7 (patch) | |
tree | 474557e8455a07dda3f29b66544284159934f752 /Makefile.in | |
parent | eed0345ff6990fbcfcfa308981d52641b9097e04 (diff) | |
download | httpd-006d343a71fd352ef97ea967d11f095f274e51b7.tar.gz |
Fix a small typo that was keeping us from copying os-inline.c to the
include directory
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86387 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 2f0126adac..6fb9430e2d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -92,7 +92,7 @@ install-include: @test -d $(includedir)/apr || $(MKINSTALLDIRS) $(includedir)/apr @cp -p include/*.h $(srcdir)/include/*.h $(includedir) @cp -p $(srcdir)/os/$(OS_DIR)/os.h $(includedir) - @if test -f $(srcdir)/os/$OSDIR/os-inline.c; then \ + @if test -f $(srcdir)/os/$(OS_DIR)/os-inline.c; then \ cp -p $(srcdir)/os/$(OS_DIR)/os-inline.c $(includedir); \ fi; @cp -p $(srcdir)/modules/dav/main/mod_dav.h $(includedir) |