Bugs item #1693142, was opened at 2007-04-02 21:36 Message generated for change (Comment added) made by bogdan_iancu You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=743020&aid=1693142&group_id=139143
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: packaging Group: None Status: Open >Resolution: Accepted Priority: 5 Private: No Submitted By: Brent (brent_thomson) >Assigned to: Bogdan (bogdan_iancu) Summary: make fails trying to copy cert files Initial Comment: The correct directory structure isn't being created for copying the .pem files into when trying to make bin. Here's my make command: TLS=1 make include_modules="unixodbc postgres" bin The failure encountered is near line 375 in the Makefile, where it attempts to touch and then copy the .pem files into the directory structure to be tar'ed up later. It appears that the mkdir commands beginning on line 367 should be after the cd that follows them, rather than before it. After moving them inside the cd, building succeeds. Can someone more familiar with the Makefile confirm that this is an acceptable solution and the desired behavior? I'd had to screw something else up inadvertently. diff: 366a367 > (cd etc ; \ 372d372 < (cd etc ; \ ---------------------------------------------------------------------- >Comment By: Bogdan (bogdan_iancu) Date: 2007-04-04 11:38 Message: Logged In: YES user_id=1275325 Originator: NO Hi Brent, thanks for report - I wasn't aware this install approach will not work for relative install pathes (as it is used for "make bin").... I will try to make a new version without any "cd"... regards, bogdan ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=743020&aid=1693142&group_id=139143 _______________________________________________ Devel mailing list [email protected] http://openser.org/cgi-bin/mailman/listinfo/devel
