1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-05 21:42:47 -05:00

Add a wrapper script called 'configure' at the top level, which runs

the real configure script from the unix subdirectory, but with cwd
unchanged so that you end up doing a VPATH build in the top-level
source directory.

Should, ideally, placate the people who expect 'configure' to be at
the top level, while still letting _me_ keep all the Unix-specific
stuff in the Unix subdirectory.

[originally from svn r9241]
This commit is contained in:
Simon Tatham
2011-07-23 11:40:26 +00:00
parent 7af708a603
commit 4a3f8bf767
2 changed files with 9 additions and 2 deletions

3
configure vendored Normal file
View File

@ -0,0 +1,3 @@
#!/bin/sh
$(echo "$0" | sed '$s!configure$!unix/configure!') "$@"