Bug Tracker
ID: | 1 🔗 |
---|---|
Status: | Closed (Fixed) |
Category: | makeglossaries (Perl) |
Version: | 1.7 |
Date: | 2012-09-30 09:10:18 |
Summary: | Does not work with subdirectories |
Report
I like to use pdflatex with its output-directory parameter, which puts all generated files into the directory supplied to this parameter. When I then call 'makeglossaries output/thesis' where "output" is the directory containing the aux, ist, acr etc. files, makeglossaries fails to add "output/" in front of the -s parameter, it calls makeindex like this:makeindex -s "thesis.ist" -t "output/thesis.alg" -o "output/thesis.acr" "output/thesis.acn"whereas it should do it like this:
makeindex -s "output/thesis.ist" -t "output/thesis.alg" -o "output/thesis.acr" "output/thesis.acn"Sadly, neither my Tex nor my Perl skills are sufficient to provide a mergeable fix, but I was able to fix it by deriving the pathname in sub makeindex by adding:
my $path = dirname($out); $ist = "$path/$ist";(and adding a use File::Basename; clause of course).
This produces a small artifact when no directory is used. In that case dirname adds "./" to the istfile name, but that's just a cosmetic nuisance. :)
Another way to fix this may be to include the path name in the .aux file, but I have no idea how to gather the directory in Tex...
Evaluation
makeglossaries v2.05 now has a-d
option to specify the path in which to run makeindex/xindy.
(I think this is a more platform-independent solution to the problem.)
Comments
Comment from Alexander WeberDate: 2013-05-06 14:25:21 CDT
I'm using Version 2.06. If I use the "-d" argument, it still produces the same error.
Everything is fine but the "-s" argument at the makeindex call.
This is my commandline (were ./H is my aux-directory):
makeglossaries -d E:/THESIS/H/ E:/THESIS/H/MyFile
Here the message:
makeglossaries version 2.06 (2013-04-21) added glossary type 'main' (glg,gls,glo) makeindex -s "MyFile.ist" -t "E:/THESIS/H/MyFile.glg" -o "E:/THESIS/H/MyFile.gls" "E:/THESIS/H/MyFile.glo" ***Call to makeindex failed***
Add comment or return to search results.
Watch This Report
If you would like to be notified whenever updates are made to this report, please fill in your email address in the box below and click on "Notify Me of Changes" button. (Please ensure the address is valid.) Your details won't be passed on to third parties in line with this site's Privacy Policy.
If you supply your name, it will be used in the email greeting, which provides a more personal message, otherwise you'll just get a generic greeting. If you have previously supplied your name when signing up for notifications, you don't need to resupply it unless you want to change it.
If you have previously subscribed to notifications for this report, you can unsubscribe by clicking on the "Stop Notification" button.
The "Confirm Bug ID" field helps to protect against spambots. Please enter the bug ID (which you can find at the top of this page).
To unsubscribe from all notifications use the notifications page.
Comment
You can append a comment to the report using the form below. Comments are checked first before being added. Any spam or offensive content will be removed first according to this site's Terms of Website Use. Please bear in mind that I develop and maintain free software in my spare time. If you want commerical level support then you can hire a TeX consultant.
The "Confirm Bug ID" field helps to protect against spambots. Please enter the bug ID (which you can find at the top of this page).