2002-01-28 Laszlo Peter <laca@ireland.sun.com> * archiver/location.c: s/__FUNCTION__/G_GNUC_FUNCTION/ * capplets/common/capplet-util.c: ditto * capplets/common/capplet-util.h: ditto * libbackground/preferences.c: ditto * applets/common/wrapper-script.in: change "test $x == y" to "test $x = y" for portability
9 lines
135 B
Bash
9 lines
135 B
Bash
#!/bin/sh
|
|
|
|
if test "x$#" = "x0"
|
|
then
|
|
@BINDIR@/gnomecc --run-capplet @CAPPLET_NAME@
|
|
else
|
|
@BINDIR@/@CAPPLET_NAME@-control $@
|
|
fi
|
|
|