diff options
author | jbj <devnull@localhost> | 1999-11-30 18:39:50 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-11-30 18:39:50 +0000 |
commit | 920f41920e121328a2906246eba7b0cea7774849 (patch) | |
tree | 893bbe4511693ae6e12230e5b313e97e16b84a02 /python/Makefile.in | |
parent | 7a41cb8e4a8ab930e2cbd03d0fdf9f9eb3a7c073 (diff) | |
download | librpm-tizen-920f41920e121328a2906246eba7b0cea7774849.tar.gz librpm-tizen-920f41920e121328a2906246eba7b0cea7774849.tar.bz2 librpm-tizen-920f41920e121328a2906246eba7b0cea7774849.zip |
python/* needs to include "system.h".
CVS patchset: 3446
CVS date: 1999/11/30 18:39:50
Diffstat (limited to 'python/Makefile.in')
-rw-r--r-- | python/Makefile.in | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/python/Makefile.in b/python/Makefile.in index 47097ad2c..ea91501b2 100644 --- a/python/Makefile.in +++ b/python/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated automatically by automake 1.4a from Makefile.am +# Makefile.in generated automatically by automake 1.4 from Makefile.am # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation @@ -48,10 +48,9 @@ AUTOMAKE = @AUTOMAKE@ AUTOHEADER = @AUTOHEADER@ INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS) INSTALL_DATA = @INSTALL_DATA@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_FLAG = transform = @program_transform_name@ NORMAL_INSTALL = : @@ -134,11 +133,17 @@ __CHOWN = @__CHOWN@ __CP = @__CP@ __CPIO = @__CPIO@ __ID = @__ID@ +__INSTALL = @__INSTALL@ __MAKE = @__MAKE@ __MKDIR = @__MKDIR@ __MV = @__MV@ +__OBJCOPY = @__OBJCOPY@ +__OBJDUMP = @__OBJDUMP@ __PATCH = @__PATCH@ __RM = @__RM@ +__RSH = @__RSH@ +__SSH = @__SSH@ +__STRIP = @__STRIP@ __TAR = @__TAR@ l = @l@ testdir = @testdir@ @@ -265,8 +270,8 @@ install-pythonPROGRAMS: $(python_PROGRAMS) $(mkinstalldirs) $(DESTDIR)$(pythondir) @list='$(python_PROGRAMS)'; for p in $$list; do \ if test -f $$p; then \ - echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(pythondir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ - $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(pythondir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ + echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(pythondir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ + $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(pythondir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ else :; fi; \ done @@ -318,7 +323,7 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pr $$d/$$file $(distdir)/$$file; \ + cp -pr $$/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ @@ -379,7 +384,7 @@ uninstall: uninstall-am all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) all-redirect: all-am install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install + $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install installdirs: $(mkinstalldirs) $(DESTDIR)$(pythondir) |