Changeset 527966e


Ignore:
Timestamp:
04/04/2006 04:11:49 PM (18 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
69fdc017
Parents:
37c1117
Message:

Update slash locations in Makefile for consistency

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@5801 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r37c1117 r527966e  
    1010JADE = openjade
    1111DOCBOOK = /usr/share/sgml/docbook/dsssl-stylesheets-1.78
    12 BASEDIR= $(HOME)/public_html/blfs-book-xsl/
    13 TEXBASEDIR= $(HOME)/public_html/blfs-book-tex/
     12BASEDIR= $(HOME)/public_html/blfs-book-xsl
     13TEXBASEDIR= $(HOME)/public_html/blfs-book-tex
    1414NOCHUNKS_OUTPUT=BLFS-BOOK.html
    1515SRCDIR = $(PWD)
     
    2525        @echo "  BASEDIR = $(BASEDIR)"
    2626        @$(INSTALL) -d $(BASEDIR)
    27         xsltproc --xinclude --nonet -stringparam base.dir $(BASEDIR) \
     27        xsltproc --xinclude --nonet -stringparam base.dir $(BASEDIR)/ \
    2828          stylesheets/blfs-chunked.xsl index.xml
    29         if [ ! -e $(BASEDIR)stylesheets ]; then \
    30           mkdir -p $(BASEDIR)stylesheets; \
     29        if [ ! -e $(BASEDIR)/stylesheets ]; then \
     30          mkdir -p $(BASEDIR)/stylesheets; \
    3131        fi;
    32         cp stylesheets/*.css $(BASEDIR)stylesheets
    33         if [ ! -e $(BASEDIR)images ]; then \
    34           mkdir -p $(BASEDIR)images; \
     32        cp stylesheets/*.css $(BASEDIR)/stylesheets
     33        if [ ! -e $(BASEDIR)/images ]; then \
     34          mkdir -p $(BASEDIR)/images; \
    3535        fi;
    3636        cp images/*.png $(BASEDIR)/images
     
    6565        sed -i -e "s/inherit/all/" blfs.fo
    6666        fop.sh blfs.fo blfs.pdf
    67         $(INSTALL) -d $(BASEDIR)pdf
     67        $(INSTALL) -d $(BASEDIR)/pdf
    6868        rm blfs.fo
    69         mv blfs.pdf $(BASEDIR)pdf
     69        mv blfs.pdf $(BASEDIR)/pdf
    7070
    7171tex:
     
    7979# Using profiles in book source to exclude parts of the book from TeX
    8080# i.e., Changelog
    81         xsltproc --nonet --output $(TEXBASEDIR)index.xml \
     81        xsltproc --nonet --output $(TEXBASEDIR)/index.xml \
    8282        --stringparam "profile.role" "book" \
    8383        http://docbook.sourceforge.net/release/xsl/current/profiling/profile.xsl \
Note: See TracChangeset for help on using the changeset viewer.