mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-10-06 01:12:40 +02:00
Create any directories in the install path that do not already exist.
2004-04-03 Manish Singh <yosh@gimp.org> * gimptool-2.0.in: Create any directories in the install path that do not already exist. Fixes bug #138980. * docs/gimptool.1.in: s/dont/don't/g
This commit is contained in:
committed by
Manish Singh
parent
7a804a3588
commit
e6e8c0ed76
@@ -1,3 +1,10 @@
|
||||
2004-04-03 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gimptool-2.0.in: Create any directories in the install path that do
|
||||
not already exist. Fixes bug #138980.
|
||||
|
||||
* docs/gimptool.1.in: s/dont/don't/g
|
||||
|
||||
2004-04-04 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/core/gimpimagemap.c (gimp_image_map_apply): do nothing if the
|
||||
|
@@ -50,17 +50,17 @@ Run quietly without echoing any of the build commands.
|
||||
Run silently without echoing any of the build commands. Same as \-\-quiet.
|
||||
.TP 8
|
||||
.B \-n
|
||||
Test mode. Print the commands but dont actually execute them. Useful for
|
||||
Test mode. Print the commands but don't actually execute them. Useful for
|
||||
making dry runs for testing.
|
||||
.TP 8
|
||||
.B \-\-just-print
|
||||
Test mode. Print the commands but dont actually execute them. Same as \-n.
|
||||
Test mode. Print the commands but don't actually execute them. Same as \-n.
|
||||
.TP 8
|
||||
.B \-\-dry-run
|
||||
Test mode. Print the commands but dont actually execute them. Same as \-n.
|
||||
Test mode. Print the commands but don't actually execute them. Same as \-n.
|
||||
.TP 8
|
||||
.B \-\-recon
|
||||
Test mode. Print the commands but dont actually execute them. Same as \-n.
|
||||
Test mode. Print the commands but don't actually execute them. Same as \-n.
|
||||
.TP 8
|
||||
.B \-\-bindir
|
||||
Outputs the bindir used to install the \fIGIMP\fP.
|
||||
|
@@ -263,6 +263,9 @@ while test $# -gt 0; do
|
||||
shift
|
||||
if test "x$1" != "x"; then
|
||||
if test -r "$1"; then
|
||||
cmd="@INSTALL_PROGRAM@ -d $DESTDIR$install_dir"
|
||||
test $quiet = "yes" || echo $cmd
|
||||
test $donothing = "yes" || $cmd
|
||||
dest=`echo $1 | sed -e 's#.*/\([^/].*\)$#\1#'`
|
||||
cmd="$install_cmd $1 $DESTDIR$install_dir/$dest"
|
||||
test $quiet = "yes" || echo $cmd
|
||||
@@ -311,6 +314,11 @@ while test $# -gt 0; do
|
||||
shift
|
||||
if test "x$1" != "x"; then
|
||||
if test -r "$1"; then
|
||||
if test "$install_dir" != "."; then
|
||||
cmd="@INSTALL_PROGRAM@ -d $DESTDIR$install_dir"
|
||||
test $quiet = "yes" || echo $cmd
|
||||
test $donothing = "yes" || $cmd
|
||||
fi
|
||||
dest=`echo $1 | sed -e 's#.*/\([^/].*\)$#\1#' -e 's/\.[^.]*$//'`
|
||||
cmd="$cc $cflags $gimp_cflags -o $install_dir/$dest $1 $ldflags $gimp_libs $libs"
|
||||
test $quiet = "yes" || echo $cmd
|
||||
|
Reference in New Issue
Block a user