Add resolution_calibrate.o.
2000-10-17 Tor Lillqvist <tml@iki.fi> * app/makefile.mingw.in (gimp_OBJECTS): Add resolution_calibrate.o. * app/user_install.c (user_install_run): Add missing semicolon. * tips/makefile.mingw (install): Copy gimp_tips.txt separately. We used to get gimp_tips.txt.txt because of `basename $f .utf8`.
This commit is contained in:

committed by
Tor Lillqvist

parent
9060fe996e
commit
37971cd589
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
2000-10-17 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
|
* app/makefile.mingw.in (gimp_OBJECTS): Add
|
||||||
|
resolution_calibrate.o.
|
||||||
|
|
||||||
|
* app/user_install.c (user_install_run): Add missing semicolon.
|
||||||
|
|
||||||
|
* tips/makefile.mingw (install): Copy gimp_tips.txt separately. We
|
||||||
|
used to get gimp_tips.txt.txt because of `basename $f .utf8`.
|
||||||
|
|
||||||
Tue Oct 17 03:55:44 CEST 2000 Marc Lehmann <pcg@goof.com>
|
Tue Oct 17 03:55:44 CEST 2000 Marc Lehmann <pcg@goof.com>
|
||||||
Applied patch by Robert L Krawitz <rlk@alum.mit.edu>.
|
Applied patch by Robert L Krawitz <rlk@alum.mit.edu>.
|
||||||
|
|
||||||
|
@ -975,7 +975,7 @@ user_install_run (void)
|
|||||||
*/
|
*/
|
||||||
quoted_data_dir = quote_spaces (gimp_data_directory ());
|
quoted_data_dir = quote_spaces (gimp_data_directory ());
|
||||||
quoted_user_dir = quote_spaces (gimp_directory ());
|
quoted_user_dir = quote_spaces (gimp_directory ());
|
||||||
quoted_sysconf_dir = quote_spaces (gimp_sysconf_directory ())
|
quoted_sysconf_dir = quote_spaces (gimp_sysconf_directory ());
|
||||||
|
|
||||||
/* The Microsoft _popen doesn't work in Windows applications, sigh.
|
/* The Microsoft _popen doesn't work in Windows applications, sigh.
|
||||||
* Do the installation by calling system(). The user_install.bat
|
* Do the installation by calling system(). The user_install.bat
|
||||||
|
@ -975,7 +975,7 @@ user_install_run (void)
|
|||||||
*/
|
*/
|
||||||
quoted_data_dir = quote_spaces (gimp_data_directory ());
|
quoted_data_dir = quote_spaces (gimp_data_directory ());
|
||||||
quoted_user_dir = quote_spaces (gimp_directory ());
|
quoted_user_dir = quote_spaces (gimp_directory ());
|
||||||
quoted_sysconf_dir = quote_spaces (gimp_sysconf_directory ())
|
quoted_sysconf_dir = quote_spaces (gimp_sysconf_directory ());
|
||||||
|
|
||||||
/* The Microsoft _popen doesn't work in Windows applications, sigh.
|
/* The Microsoft _popen doesn't work in Windows applications, sigh.
|
||||||
* Do the installation by calling system(). The user_install.bat
|
* Do the installation by calling system(). The user_install.bat
|
||||||
|
@ -209,6 +209,7 @@ gimp_OBJECTS = \
|
|||||||
rect_select.o \
|
rect_select.o \
|
||||||
regex.o \
|
regex.o \
|
||||||
resize.o \
|
resize.o \
|
||||||
|
resolution_calibrate.o \
|
||||||
rotate_tool.o \
|
rotate_tool.o \
|
||||||
scale.o \
|
scale.o \
|
||||||
scale_tool.o \
|
scale_tool.o \
|
||||||
|
@ -975,7 +975,7 @@ user_install_run (void)
|
|||||||
*/
|
*/
|
||||||
quoted_data_dir = quote_spaces (gimp_data_directory ());
|
quoted_data_dir = quote_spaces (gimp_data_directory ());
|
||||||
quoted_user_dir = quote_spaces (gimp_directory ());
|
quoted_user_dir = quote_spaces (gimp_directory ());
|
||||||
quoted_sysconf_dir = quote_spaces (gimp_sysconf_directory ())
|
quoted_sysconf_dir = quote_spaces (gimp_sysconf_directory ());
|
||||||
|
|
||||||
/* The Microsoft _popen doesn't work in Windows applications, sigh.
|
/* The Microsoft _popen doesn't work in Windows applications, sigh.
|
||||||
* Do the installation by calling system(). The user_install.bat
|
* Do the installation by calling system(). The user_install.bat
|
||||||
|
@ -5,7 +5,8 @@ UTF8TXT = $(addsuffix .utf8,$(basename $(wildcard *.*.txt)))
|
|||||||
all : $(UTF8TXT)
|
all : $(UTF8TXT)
|
||||||
|
|
||||||
install : all
|
install : all
|
||||||
for f in gimp_tips.txt $(UTF8TXT); do cp $$f $(DEST)/tips/`basename $$f .utf8`.txt; done
|
for f in $(UTF8TXT); do cp $$f $(DEST)/tips/`basename $$f .utf8`.txt; done
|
||||||
|
cp gimp_tips.txt $(DEST)/tips
|
||||||
|
|
||||||
.SUFFIXES: .utf8
|
.SUFFIXES: .utf8
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user