diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-05-12 15:25:38 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-05-12 15:25:38 +0000 |
commit | d99db036fdc356530e51d7fee939f75a45c4221c (patch) | |
tree | 2f8e442e4244d2b410b395981476e8bd2b8c7835 /grpmi | |
parent | 6f9333def9a51594c7e049a78fb32571d2108275 (diff) | |
download | rpmdrake-d99db036fdc356530e51d7fee939f75a45c4221c.tar rpmdrake-d99db036fdc356530e51d7fee939f75a45c4221c.tar.gz rpmdrake-d99db036fdc356530e51d7fee939f75a45c4221c.tar.bz2 rpmdrake-d99db036fdc356530e51d7fee939f75a45c4221c.tar.xz rpmdrake-d99db036fdc356530e51d7fee939f75a45c4221c.zip |
obsolete grpmi by gurpm.pm (from urpmi) sharing code between gurpmi
and rpmdrake
Diffstat (limited to 'grpmi')
-rw-r--r-- | grpmi/Makefile | 7 | ||||
-rw-r--r-- | grpmi/curl_download/curl_download.xs | 2 |
2 files changed, 2 insertions, 7 deletions
diff --git a/grpmi/Makefile b/grpmi/Makefile index 94233fb0..29be902e 100644 --- a/grpmi/Makefile +++ b/grpmi/Makefile @@ -13,7 +13,7 @@ # #***************************************************************************** -DIRS = curl_download rpm po +DIRS = curl_download PREFIX = /usr/local DATADIR = $(PREFIX)/share @@ -30,11 +30,6 @@ install: $(ALL) @for n in $(DIRS); do \ (cd $$n; $(MAKE) install) \ done - install -d $(SBINDIR) - install grpmi.pl $(SBINDIR)/grpmi - perl -pi -e 's|use strict.*||' $(SBINDIR)/grpmi - perl -pi -e 's|use vars.*||' $(SBINDIR)/grpmi - perl -pi -e 's|use diagnostics.*||' $(SBINDIR)/grpmi clean: @for n in $(DIRS); do \ diff --git a/grpmi/curl_download/curl_download.xs b/grpmi/curl_download/curl_download.xs index 288982f9..b1edea81 100644 --- a/grpmi/curl_download/curl_download.xs +++ b/grpmi/curl_download/curl_download.xs @@ -38,7 +38,7 @@ #include <libintl.h> #undef _ -#define _(arg) dgettext("grpmi", arg) +#define _(arg) dgettext("rpmdrake", arg) char * my_asprintf(char *msg, ...) { |