summaryrefslogtreecommitdiff
path: root/bin/minstall
AgeCommit message (Collapse)AuthorFilesLines
2010-09-01Cygwin: Teach mklib/minstall to properly install libraries on cygwinJon TURNEY1-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 <jon.turney@dronecode.org.uk> Signed-off-by: Brian Paul <brianp@vmware.com>
2009-05-21minstall: Don't copy over an identical fileCarl Worth1-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.
2008-06-21Make minstall work with Solaris /bin/shAlan Coopersmith1-1/+2
Solaris /bin/sh doesn't set $PWD for you Signed-off-by: Brian Paul <brian.paul@tungstengraphics.com>
2006-12-11minstall: Pass correct destination file path to $RM regardless of source path.Michel Dänzer1-1/+1
2006-12-11minstall: Always remove destination file before (re-)creating it.Michel Dänzer1-0/+1
This avoids issues with overwriting files that are being used.
2006-10-19New bin/minstall script - a minimal replacement for 'install'.Brian Paul1-0/+88
Correctly handles symlinks so we can get rid of the COPY_LIBS stuff.