summaryrefslogtreecommitdiffstats
path: root/bin/minstall
Commit message (Collapse)AuthorAgeFilesLines
* Cygwin: Teach mklib/minstall to properly install libraries on cygwinJon TURNEY2010-09-011-1/+20
| | | | | | | | | | | | | | | | Teach mklib/minstall more about cygwin so libraries are properly installed Have mklib install the .dll into the lib/ staging directory as well Have minstall install the .dll into PREFIX/bin at the same time as installing the .dll.a link library into PREFIX/lib mklib uses a '-' rather than a '.' as the separator before the version number in library names on cygwin. Change the install globs so they match library names like that. Signed-off-by: Jon TURNEY <[email protected]> Signed-off-by: Brian Paul <[email protected]>
* minstall: Don't copy over an identical fileCarl Worth2009-05-211-2/+5
| | | | | | | The rationale here is to avoid updating a timestamp for a file that hasn't changed. Needless updates of the timestamp can ripple into other projects, (xserver, etc.), useless recompiling due to a 'make install' in mesa that didn't actually change anything.
* Make minstall work with Solaris /bin/shAlan Coopersmith2008-06-211-1/+2
| | | | | | Solaris /bin/sh doesn't set $PWD for you Signed-off-by: Brian Paul <[email protected]>
* minstall: Pass correct destination file path to $RM regardless of source path.Michel Dänzer2006-12-111-1/+1
|
* minstall: Always remove destination file before (re-)creating it.Michel Dänzer2006-12-111-0/+1
| | | | This avoids issues with overwriting files that are being used.
* New bin/minstall script - a minimal replacement for 'install'.Brian Paul2006-10-191-0/+88
Correctly handles symlinks so we can get rid of the COPY_LIBS stuff.