diff options
author | jbj <devnull@localhost> | 1999-11-19 18:19:41 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-11-19 18:19:41 +0000 |
commit | c6d768583ef384f1037d5d3fb3c73174cebd6bdf (patch) | |
tree | 3b8803c45679d92143e2408d9fc08b7d398df6ac /scripts | |
parent | 1f6614e61efc520d2da0c09604d4ee1c06117073 (diff) | |
download | rpm-c6d768583ef384f1037d5d3fb3c73174cebd6bdf.tar.gz rpm-c6d768583ef384f1037d5d3fb3c73174cebd6bdf.tar.bz2 rpm-c6d768583ef384f1037d5d3fb3c73174cebd6bdf.zip |
macros.in: Add buildsubdir and scriptlet template macros.
build/build.c: Rewrite to use scriptlet templates.
build/files.c: Rename variables to prepare for (possibly) URL's in %files.
build/myftw.c: Use Lstat.
build/parsePreamble.c: Permit URL's in BuildRoot tag if not from spec file.
build/parseSpec.c: ditto
build/parsePrep.c: Add buildsubdir macro.
lib/macro.c: Add url2path (nickname u2p) and verbose macro primitives.
lib/url.c: urlPath returns "" if url is NULL (rpmGenPath memory corruption).
CVS patchset: 3430
CVS date: 1999/11/19 18:19:41
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/Makefile.in b/scripts/Makefile.in index b3010cbfc..88470d033 100644 --- a/scripts/Makefile.in +++ b/scripts/Makefile.in @@ -134,11 +134,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@ |