summaryrefslogtreecommitdiff
path: root/misc/update_config_scripts
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2021-11-24 14:57:41 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2021-11-24 15:01:45 +0100
commitef1c2d5b2686ee7812c4067ea199006e8df0f5da (patch)
tree16121f1bfdf9d96d0160662d2d9f9d48c33d6417 /misc/update_config_scripts
parent7e484c614c16f0a6580ba2c2efaa654ab4e08082 (diff)
Fix README files and remove stale config.guess and config.sub
README.Unix.txt and README.Windows.txt (MinGW, MSYS) instructed to execute `NOCONFIGURE=1 ./autogen.sh` which is no longer necessary (a simple `autoconf` does the job). Remove files misc/config.guess and misc/config.sub because they are no longer needed: these files are now in th FLTK root directory available. Remove all references to these files. Fix .gitattributes accordingly. Also exclude the .github folder from exports, for instance when creating distribution tarballs.
Diffstat (limited to 'misc/update_config_scripts')
-rwxr-xr-xmisc/update_config_scripts11
1 files changed, 5 insertions, 6 deletions
diff --git a/misc/update_config_scripts b/misc/update_config_scripts
index ef9a1bfe2..b28977b8a 100755
--- a/misc/update_config_scripts
+++ b/misc/update_config_scripts
@@ -3,7 +3,7 @@
# Update the bundled scripts config.guess and config.sub
# for the Fast Light Tool Kit (FLTK).
#
-# Copyright 1998-2017 by Bill Spitzak and others.
+# Copyright 1998-2021 by Bill Spitzak and others.
#
# This library is free software. Distribution and use rights are outlined in
# the file "COPYING" which should have been included with this file. If this
@@ -24,19 +24,18 @@
# browser to view and download the files if wget is not installed on
# your system.
#
-# After updating the scripts, copy config.guess and config.sub
-# to the FLTK root directory, test, and eventually commit the changes:
+# After downloading the scripts, copy config.guess and config.sub to
+# the FLTK root directory, test, and eventually commit the changes:
#
# # cd to FLTK root directory
#
# $ make distclean
-# $ rm -f config.guess config.sub configure
-# $ cp misc/config.guess misc/config.sub .
# $ autoconf -f
# $ ./configure [options ...]
# $ make
# # test
-# $ svn commit
+# $ git add config.guess config.sub
+# $ git commit
#
for FILE in config.guess config.sub; do