diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Makefile.in | 4 |
2 files changed, 3 insertions, 4 deletions
@@ -1,5 +1,8 @@ 1999-06-21 Thomas Bushnell, BSG <tb@mit.edu> + * Makefile.in (all-real-archs): Delete variable. + (dist): No longer make `machine' symlink. + * Makefile.in (dist): Sanify file permissions before building tar file. diff --git a/Makefile.in b/Makefile.in index 45ac713..609a8f6 100644 --- a/Makefile.in +++ b/Makefile.in @@ -61,7 +61,6 @@ all: # All the possible architectures all-archs = i386 linux -all-real-archs = i386 all-archs-subdirs = $(patsubst %,$(srcdir)/%/Subdirs,$(all-archs)) all-archs-files = $(patsubst %,$(srcdir)/%/Files,$(all-archs)) @@ -403,9 +402,6 @@ dist: for file in `cat $(all-archs-files)`; do \ cp $(srcdir)/$$file gnumach-$(version)/`dirname $$file`; \ done - for arch in $(all-real-archs); do \ - ln -s $$arch gnumach-$(version)/$$arch/include/mach/machine; \ - done chmod -R u=rwX og=rX gnumach-$(version) tar cfz gnumach-$(version).tar.gz gnumach-$(version) rm -rf gnumach-$(version) |