programs: Get rid of the remaining binary wrappers, they break out-of-tree builds.
diff --git a/.gitignore b/.gitignore
index cf63122..f853aba 100644
--- a/.gitignore
+++ b/.gitignore
@@ -226,10 +226,6 @@
 loader/wine.fr.man
 loader/wine.man
 programs/Makeprog.rules
-programs/msiexec/msiexec
-programs/notepad/notepad
-programs/regedit/regedit
-programs/regsvr32/regsvr32
 programs/rpcss/epm.h
 programs/rpcss/epm_s.c
 programs/rpcss/irot.h
@@ -237,17 +233,10 @@
 programs/services/svcctl.h
 programs/services/svcctl_s.c
 programs/wineapploader
-programs/wineboot/wineboot
-programs/winecfg/winecfg
-programs/wineconsole/wineconsole
 programs/winedbg/dbg.tab.c
 programs/winedbg/dbg.tab.h
 programs/winedbg/debug.yy.c
-programs/winedbg/winedbg
 programs/winedbg/winedbg.man
-programs/winefile/winefile
-programs/winemine/winemine
-programs/winepath/winepath
 programs/winetest/*_test.exe
 programs/winetest/tests.rc
 programs/winhlp32/macro.lex.yy.c
diff --git a/configure b/configure
index 2b9b4e4..e5a4fcc 100755
--- a/configure
+++ b/configure
Binary files differ
diff --git a/configure.ac b/configure.ac
index 8db0c51..67241f2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2336,16 +2336,6 @@
 dnl Don't install in bin dir for Windows build
 test -n "$DLLEXT" || ALL_PROGRAM_BIN_INSTALL_DIRS=""
 
-AC_SUBST(ALL_PROGRAM_BIN_WRAPPERS,"")
-for dir in $ALL_PROGRAM_BIN_INSTALL_DIRS
-do
-    if test "$dir" != "\\"
-    then
-        ALL_PROGRAM_BIN_WRAPPERS="$ALL_PROGRAM_BIN_WRAPPERS \\
-	$dir/$dir"
-    fi
-done
-
 AC_OUTPUT
 
 if test "$no_create" = "yes"
diff --git a/programs/Makefile.in b/programs/Makefile.in
index 3bc7abd..7bd60b2 100644
--- a/programs/Makefile.in
+++ b/programs/Makefile.in
@@ -6,7 +6,6 @@
 SUBDIRS        = @ALL_PROGRAM_DIRS@
 INSTALLSUBDIRS = @ALL_PROGRAM_INSTALL_DIRS@
 INSTALLPROGS   = @ALL_PROGRAM_BIN_INSTALL_DIRS@
-BIN_WRAPPERS   = @ALL_PROGRAM_BIN_WRAPPERS@
 
 INSTALLDIRS = $(DESTDIR)$(bindir)
 
@@ -14,14 +13,11 @@
 
 @MAKE_RULES@
 
-all: $(PROGRAMS) $(SUBDIRS) $(BIN_WRAPPERS)
+all: $(PROGRAMS) $(SUBDIRS)
 
 wineapploader: wineapploader.in
 	sed -e 's,@bindir\@,$(bindir),g' $(SRCDIR)/wineapploader.in >$@ || ($(RM) $@ && false)
 
-$(BIN_WRAPPERS): $(WINEWRAPPER)
-	$(RM) $@ && $(LN) $(WINEWRAPPER) $@
-
 # Rules for installation
 
 .PHONY: install-apploader install-progs install-progs.so $(INSTALLPROGS:%=%/__installprog__)
@@ -43,9 +39,6 @@
 	-cd $(DESTDIR)$(bindir) && $(RM) wineapploader $(INSTALLPROGS)
 	-rmdir $(DESTDIR)$(dlldir)
 
-clean::
-	$(RM) $(BIN_WRAPPERS)
-
 # Rules for testing
 
 check test:: $(SUBDIRS:%=%/__test__)
diff --git a/tools/make_makefiles b/tools/make_makefiles
index 7f04e22..ff6e85a 100755
--- a/tools/make_makefiles
+++ b/tools/make_makefiles
@@ -541,10 +541,6 @@
         {
             push @ignores, map { s/\$\(EXEEXT\)//; $dir . $_; } @{$makefile{"PROGRAMS"}};
         }
-        if ($dir =~ /^programs\/(.*)\/$/)
-        {
-            push @ignores, "$dir$1" if $bin_install{$1};
-        }
     }
 
     # prepend a slash to paths that don't have one